I have been using HT Condor (through UW Madison’s CHTC) a lot. They are really amazing resources.

Conda

I just realized we can install conda for python enviroments management.

# Download Miniconda installer
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

Install Miniconda in your home directory

bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda

Initialize Conda

source $HOME/miniconda/bin/activate conda init

Then we can create a …