Skip to content

Instantly share code, notes, and snippets.

@ngoldbaum
Created February 8, 2024 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ngoldbaum/4ab2235a607164dd3f26983e51038d7d to your computer and use it in GitHub Desktop.
Save ngoldbaum/4ab2235a607164dd3f26983e51038d7d to your computer and use it in GitHub Desktop.
mkdir ~/user/github
cd !$
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod 755 Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh -b -f -u -p csp_venv
. ~/user/github/csp_venv/etc/profile.d/conda.sh
conda config --add channels conda-forge
conda config --set channel_priority strict
conda env create -n csp -f dev-environment.yml
git clone https://github.com/Point72/csp.git
cd csp
conda activate csp
make build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment