Created
November 7, 2016 14:30
-
-
Save datitran/263d912b244806788cd26c497fb5f1af 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
| #!/usr/bin/env bash | |
| # install conda | |
| wget --quiet https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh \ | |
| && /bin/bash ~/miniconda.sh -b -p $HOME/conda | |
| echo -e '\nexport PATH=$HOME/conda/bin:$PATH' >> $HOME/.bashrc && source $HOME/.bashrc | |
| # install packages | |
| conda install -y ipython jupyter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment