Last active
July 19, 2018 11:02
-
-
Save GzuPark/06a1e14394059ac63d8738a6e761b70a to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get install curl | |
# latest version | |
# https://repo.continuum.io/archive/ | |
curl -O https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh | |
# recommend install directory | |
# /usr/bin/anaconda3 | |
bash ./Anaconda3-5.2.0-Linux-x86_64.sh -p /usr/bin/anaconda3 -b | |
# if you want to change default python | |
ln -s -f /usr/bin/anaconda3/bin/python3 /usr/bin/python | |
# conda set up | |
ln -s -f /usr/bin/anaconda3/bin/conda /usr/bin/conda |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment