Last active
July 1, 2018 19:38
-
-
Save pachadotdev/3ef4c7e7ccea9259eb5bf6ef2e4c1d21 to your computer and use it in GitHub Desktop.
Install Anaconda on Ubuntu 17.10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
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?
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
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.