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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I guess it is activate the default environment 'root'