Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To create an environment outside the default location of ~/.conda/envs, you will need to use the prefix option during the environment creation process. There is a shared directory available at /home/SE/ where you can put your environment that is readable by all users (but not writeable). As a recommendation, you should add your initials after the environment name to differentiate your environment from someone else who made their own and named it similarly. 


Code Block
languagebash
conda create -p /home/SE/your_env_name_initials


This environment can be activated by typing 


Code Block
languagebash
conda activate /home/SE/your_env_name_initials


Please refer to the documentation for more details on using these environments: Switching Environments: Jupyter Notebook/LabSwitching Environments: conda

...