Created
April 8, 2017 08:59
-
-
Save HoriLiu/35256016960e5cf8851fef18437cd7a0 to your computer and use it in GitHub Desktop.
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
http://askubuntu.com/questions/505919/how-to-install-anaconda-on-ubuntu | |
python 2 anaconda install bash script: | |
# Go to home directory | |
cd ~ | |
# You can change what anaconda version you want at | |
# https://repo.continuum.io/archive/ | |
wget https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh | |
bash Anaconda2-4.2.0-Linux-x86_64.sh -b -p ~/anaconda | |
rm Anaconda2-4.2.0-Linux-x86_64.sh | |
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc | |
# Refresh basically | |
source .bashrc | |
conda update conda | |
python 3 anaconda install bash script | |
# Go to home directory | |
cd ~ | |
# You can change what anaconda version you want at | |
# https://repo.continuum.io/archive/ | |
wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh | |
bash Anaconda3-4.2.0-Linux-x86_64.sh -b -p ~/anaconda | |
rm Anaconda3-4.2.0-Linux-x86_64.sh | |
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc | |
# Refresh basically | |
source .bashrc | |
conda update conda |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment