Skip to content

Instantly share code, notes, and snippets.

@verhulstm
Last active July 5, 2019 02:15
Show Gist options
  • Save verhulstm/f7318388fb0cda7a637cf25b785126c8 to your computer and use it in GitHub Desktop.
Save verhulstm/f7318388fb0cda7a637cf25b785126c8 to your computer and use it in GitHub Desktop.
install anaconda
```
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b
export PATH="~/miniconda3/bin:$PATH"
rm Miniconda3-latest-Linux-x86_64.sh
```
setup conda env
```
conda create -n venv python=3.7
source activate venv
install
```
pip install -r requirements.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment