Skip to content

Instantly share code, notes, and snippets.

@pachadotdev
Last active July 1, 2018 19:38
Show Gist options
  • Save pachadotdev/3ef4c7e7ccea9259eb5bf6ef2e4c1d21 to your computer and use it in GitHub Desktop.
Save pachadotdev/3ef4c7e7ccea9259eb5bf6ef2e4c1d21 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
@darioromero
Copy link

I guess it is activate the default environment 'root'

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