Skip to content

Instantly share code, notes, and snippets.

@nishnik
Last active October 17, 2016 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nishnik/392910a64f88a12ef94692c4384683e5 to your computer and use it in GitHub Desktop.
Save nishnik/392910a64f88a12ef94692c4384683e5 to your computer and use it in GitHub Desktop.
Bash commands to install different Deep Learning related softwares
#! /bin/bash
# DL, ML, NLP
sudo apt-get update
# scipy, matplotlib
sudo apt-get install python-dev python-pip python-matplotlib python-scipy
#tensorflow
sudo pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
# scikit-learn, pandas, statsmodel
sudo pip install -U scikit-learn pandas statsmodels wget
# uncomment the next line if only want to install theano, not tensorflow
# numpy
sudo apt-get install python-numpy python-nose g++ libopenblas-dev git # python-scipy python-dev python-pip
# theano
sudo pip install Theano
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment