Skip to content

Latest commit

 

History

History
67 lines (44 loc) · 2.21 KB

File metadata and controls

67 lines (44 loc) · 2.21 KB

Initialisation of the Anaconda environment

When the Anaconda environment was setup using the provided install instructions, the environment can easily be initialised. These instruction discuss how that can be done.

Table of contents


Author

Name Role VUB mail Personal mail
Lennert Bontinck Master Thesis writer [email protected] [email protected]

Windows

Windows Initialisation script

The below script can be used to start the anaconda environment in the GitHub project folder and launch a Jupyter Notebook server.

# Launches the correct environment from the install instructions
CALL conda activate bci-master-thesis

# Launches Jupyter Notebook server on correct folder.
# Replace <path-of-github> with your source of the GitHub repository.
#   e.g. D:\Libraries\Documenten\GitHub\bci-master-thesis
CALL jupyter notebook --notebook-dir="<path-of-github>"

MacOS

MacOS Initialisation script

The below script can be used to start the anaconda environment in the GitHub project folder and launch a Jupyter Notebook server.

# Replace <path-of-conda> with your source of the conda.sh file.
#   e.g. /Users/lennertbontinck/opt/anaconda3/etc/profile.d/conda.sh
source <path-of-conda>
# Launches the correct environment from the install instructions
conda activate bci-master-thesis
# Replace <path-of-github> with your source of the GitHub repository.
#   e.g. /Users/lennertbontinck/Documents/GitHub/bci-master-thesis
cd <path-of-github>
# Launches Jupyter Notebook server
jupyter notebook


© Lennert Bontinck VUB 2021-2022