Skip to content

Instantly share code, notes, and snippets.

@UbuntuEvangelist
Created December 14, 2018 17:33
Show Gist options
  • Save UbuntuEvangelist/ef800b93bee2609406aa69705343a7c9 to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/ef800b93bee2609406aa69705343a7c9 to your computer and use it in GitHub Desktop.
Install Anaconda on Ubuntu 18.04 LTS
# 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