Conda ¶
Anaconda provides packages for NEST Desktop. and NEST Simulator. These packages can be installed with Conda (from conda-forge). Since NEST 3, the API server (i.e. NEST Server) is included which is necessary for NEST Desktop.
Prequistion for conda-forge¶
Conda-forge is a collection of packages led by the community (https://conda-forge.org/). By default conda cannot install packages from the conda-forge.
Add channel for conda-forge:
conda config --add channels conda-forge
conda config --set channel_priority strict
Setup Conda environment¶
Create a Conda environment called nest and install NEST Desktop:
conda create -n nest nest-desktopActivate the Conda environment nest:
conda activate nestInstall backends in Conda environment. For more infomation, please read the installation guide here.
The installation is now complete!
Start in Conda environment¶
Activate the Conda environment nest:
conda activate nestStart backends in Conda environment. For more information, please follow the start instructions here.
Start NEST Desktop (in another terminal session):
nest-desktop startNEST Desktop is now started and available in the web browser at http://localhost:54286.
See also
For more information read the full documentation of the command API here.