Skip to content

Instantly share code, notes, and snippets.

@GzuPark
Last active July 19, 2018 11:02
Show Gist options
  • Save GzuPark/06a1e14394059ac63d8738a6e761b70a to your computer and use it in GitHub Desktop.
Save GzuPark/06a1e14394059ac63d8738a6e761b70a to your computer and use it in GitHub Desktop.
#!/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