Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bennylangston/dea68f955b54f345797ffaf4ac6926f0 to your computer and use it in GitHub Desktop.
Save bennylangston/dea68f955b54f345797ffaf4ac6926f0 to your computer and use it in GitHub Desktop.
Install Anaconda on Ubuntu 17.10
cd Downloads
wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh
bash Anaconda3-5.0.1-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda3-5.0.1-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
conda update conda
source ~/anaconda/bin/activate root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment