Skip to content

Instantly share code, notes, and snippets.

@dexhunter
Last active November 27, 2017 10:57
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 dexhunter/ce0d38dd0af292444c73479ed0291b5e to your computer and use it in GitHub Desktop.
Save dexhunter/ce0d38dd0af292444c73479ed0291b5e to your computer and use it in GitHub Desktop.
anaconda2.sh
# Go to home directory
cd ~
# You can change what anaconda version you want at
# https://repo.continuum.io/archive/
wget https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh
bash Anaconda2-4.2.0-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda2-4.2.0-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc
# Refresh basically
source .bashrc
conda update conda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment