Conda/Anaconda

The package and environment management system allows users to create isolated working environments, install various programming tools, including the recent Python versions and deep learning modules.

Preparing the working environment

module load conda

Executables

conda

Usage instructions for the cluster

Task examples available here:

module load conda
conda create -n my_conda_env python=3.6
conda info --envs
source activate my_conda_env 
conda install pytorch torchvision -c pytorch