Skip to content

Instantly share code, notes, and snippets.

@luiscosio
Created March 7, 2017 01:59
Show Gist options
  • Save luiscosio/8774c255adc8f3669ccbca19333a399e to your computer and use it in GitHub Desktop.
Save luiscosio/8774c255adc8f3669ccbca19333a399e to your computer and use it in GitHub Desktop.
Conda for Ubuntu 16.04 in Amazon EC2 (Udacity AIND)
sudo vim /etc/environment
LC_ALL="en_US.UTF-8"
logout
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install build-essential -y
sudo apt-get autoremove -y
sudo apt-get install git -y
curl -O https://repo.continuum.io/archive/Anaconda3-4.3.0-Linux-x86_64.sh
bash Anaconda3-4.2.0-Linux-x86_64.sh
curl -O https://d17h27t6h515a5.cloudfront.net/topher/2017/January/5887a3ec_aind-environment-unix/aind-environment-unix.yml
conda env create -f aind-environment-unix.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment