Slangin' data and shootin' the RAG.
## Install new conda environment
cd /share/<somewhere>/conda
export CONDA_PKGS_DIRS=$(pwd)/conda_dirs
export CONDA_ENVS_PATH=$(pwd)/conda_envs
conda create --prefix $(pwd)/<env-name> python=3.11.9
## Activate conda environment
conda activate $(pwd)/<env-name>
# Activate conda environment
conda activate /path/to/conda/env
# Install dependencies
pip3 install -r requirements.txt --no-cache-dir
# Install cache_replacement package as an interactive python module
pip3 install -e .
find . -exec touch {} +