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
@franck-cabrel
Copy link

Hi! i tried to type those lines of code but after typing line 3 I had an error saying "unable to resolve host address 'repo.continuum.io' " I'm still a linux newbie! thanks if you can help

@ptrbates
Copy link

ptrbates commented Apr 1, 2018

Even a slight typo will throw you off; have you tried a copy/paste instead of typing it directly? If that doesn't work, it may be that the file name on the host side has changed. In that case, you can often navigate to the website (https://repo.continuum.io/archive/), locate the file you want, and download it through your browser.

@bbennett36
Copy link

What does the last line in this do?
source ~/anaconda/bin/activate root

Is this another way of calling 'source activate' or are you doing something different here?

@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