Created
December 14, 2018 17:33
-
-
Save UbuntuEvangelist/ef800b93bee2609406aa69705343a7c9 to your computer and use it in GitHub Desktop.
Install Anaconda on Ubuntu 18.04 LTS
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
| # This script will Install Anaconda on Ubuntu 18.04 LTS | |
| sudo apt-get update -y && sudo apt-get upgrade -y | |
| cd /tmp/ | |
| wget https://repo.anaconda.com/archive/Anaconda3-5.0.1-Linux-x86_64.sh | |
| md5sum Anaconda3-5.0.1-Linux-x86_64.sh | |
| bash Anaconda3-5.0.1-Linux-x86_64.sh | |
| source ~/.bashrc | |
| conda list | |
| conda create --name myenv python=3 | |
| source activate myenv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment