Last active
July 5, 2019 02:15
-
-
Save verhulstm/f7318388fb0cda7a637cf25b785126c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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