- Add miniconda to your system path and create the
aeon
python env from theenv.yml
file:
module load miniconda
conda env create -f env_config/env.yml
- Optionally install development dependencies:
conda activate aeon
conda env update -f env_config/env_dev.yml
- Using the virtual environment:
conda activate aeon
: activates the virtual environment; any commands now run within this terminal will take place within the virtual environment.conda deactivate aeon
: deactivates the virtual environment.
- (Optional) Add commands to the
.profile
file to add miniconda as an environment module and Bonsai and its dependencies to your system path on startup (this will be initialized each time you SSH into the HPC).- Copy the commands in the
.profile_example
file in this folder to your HPC home directory.profile
file (you will have to create this file if it doesn't already exist).
- Copy the commands in the
- For instructions on developing within the
aeon
environment, seedeveloping_on_hpc.md