useful
Shared conda env
# download miniconda
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
# install miniconda
bash Miniconda3-latest-Linux-x86_64.sh
# add path to the pre-configured shared environments to conda config file
echo 'envs_dirs:
- /storage/shared_conda/envs' > ~/.condarc
bash
# check if everything is ok and you see the envs
conda info -e
# activate needed env
conda activate nameoftheenvironmentSSH session
Last updated