Anaconda ================== Load Anaconda and run a program from within an activated virtual environment. .. code-block:: bash #!/bin/bash #$ -cwd #$ -l h_rt=8:00:00,h_data=2g #$ -o stdout.$JOB_ID #$ -e stderr.$JOB_ID .... # Use system-wise modules source /u/local/Modules/default/init/modules.sh module load anaconda source $CONDA_DIR/etc/conda.sh conda activate name/of/virtual/envonment # Run program python3 or executable file .... # Exit anaconda conda deactivate