...
No Format |
---|
module load anaconda3/2021.11 source activate <you environment> #e.g source activate s123456-tf-cpu conda install <another-package-1> <another-package-2> #To see the packages in your Conda environment, run this command conda list conda deactivate exit For some packages you will need to add the conda-forge channel or even perform the installation using pip as the last step. |
...
ssh snumber@n059.rcs.griffith.edu.au module load anaconda3/2020.11
source /usr/local/bin/s3proxy.sh conda create --name myenv jupyter <package-2> <package-3> condasource activate myenv
#To see the packages in your Conda environment, run this command
conda list
jupyter-notebook --no-browser --port=8889 --ip=127.0.0.1
The packages in the base environment will not be available in your custom environment unless you explicitly list them (e.g., numpy, matplotlib, scipy).
...