-
-
Save rkennesson/c2cd83d8957ca7ed47384f6e3f7a617e to your computer and use it in GitHub Desktop.
download and install conda
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
CONTREPO=https://repo.continuum.io/archive/ | |
# Stepwise filtering of the html at $CONTREPO | |
# Get the topmost line that matches our requirements, extract the file name. | |
ANACONDAURL=$(wget -q -O - $CONTREPO index.html | grep "Anaconda3-" | grep "Linux" | grep "86_64" | head -n 1 | cut -d \" -f 2) | |
wget -O ~/Downloads/anaconda.sh $CONTREPO$ANACONDAURL | |
bash ~/Downloads/anaconda.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment