Installation¶
This guide helps you to install Nestor onto your computer. There are two modes for installation. They are as follows.
Install from PyPI (Recommended)¶
This will do a cloud install to your python installation directory.
Open a command line terminal
- Linux
Ctrl+Alt+T- Windows
Windows+R-> Type ‘cmd’- Mac
⌘+Space-> Type ‘Terminal’
Type in
pip install nist-nestorand wait for the install to complete. This installs the Graphical User Interface (GUI) for the Nestor Tagging Tool.(Optional Step) Type in
pip install nist-nestor[dash]to also install the Nestor Dashboard (Under Development!).
Install using local archive¶
This is necessary only if you did not install using the above method (using PyPI).
This will be a local install downloaded from a recent source code release on GitHub
Download the .zip file of the entire nestor installation from the Github repository
Extract the files to a directory, preferably with write access.
Open a terminal window
- Linux
Ctrl+Alt+T- Windows
Windows+R-> Type ‘cmd’- Mac
⌘+Space-> Type ‘Terminal’
Navigate to the folder where the files have been extracted to (the folder will have the file setup.py in it).
Install nestor using the command
pip install .(please note the “.” is part of the command)(Optional Step) Type in
pip install .[dash]to install the Nestor Dashboard (Under Development!).
How to automatically build documentation (Optional)¶
This section is useful for developers of Nestor.
A version of the documentation for Nestor is hosted at Readthedocs. However you may build a local version if required.
If Nestor is not installed and you want to build a local version of the documentation, you can run
pip install .[docs]. If Nestor is already installed, navigate to the installation directory and install the Sphinx dependancies by typing inpip install -r requirements/doc.txtTo build HTML documentation navigate into the
docssubdirectory of Nestor and runmake html. The HTML source code will be created innestor/_build/htmland can be opened with the index.html file in a browser.To build PDF documentation LaTeX must be installed. As above, run
make latexand navigate into thenestor/_build/latexdirectory. Runpdflatex nestor.tex.