Skip to content

Instantly share code, notes, and snippets.

@mariomartinezsz
Last active July 28, 2018 05:18
Show Gist options
  • Save mariomartinezsz/2d82aea6b835bb63a37da1b2295eb2a4 to your computer and use it in GitHub Desktop.
Save mariomartinezsz/2d82aea6b835bb63a37da1b2295eb2a4 to your computer and use it in GitHub Desktop.
Install Anaconda on Ubuntu
cd ~
wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh
bash Anaconda3-5.1.0-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda3-5.1.0-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc

# Refresh
source .bashrc 

conda update conda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment