Skip to content

Instantly share code, notes, and snippets.

@marioyc
Last active July 13, 2018 20:40
Show Gist options
  • Save marioyc/47845b573d69e68b34026126fec8703c to your computer and use it in GitHub Desktop.
Save marioyc/47845b573d69e68b34026126fec8703c to your computer and use it in GitHub Desktop.
AWS Ubuntu Server Installation (Conda, Tensorflow, Keras, Sklearn)
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install python-pip
sudo wget https://repo.continuum.io/archive/Anaconda2-5.2.0-Linux-x86_64.sh
sudo bash Anaconda2-5.2.0-Linux-x86_64.sh
. /home/ubuntu/.bashrc
conda create -n py36 python=3.6
. activate py36
pip --no-cache-dir install tensorflow==1.9.0
pip install keras==2.2.0
pip install scikit-learn==0.19.1
sudo apt-get install gcc python-tk
pip install matplotlib==2.2.2
pip install pandas==0.23.3
sudo apt-get install ipython
pip install jupyter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment