Last active
October 17, 2016 11:09
-
-
Save nishnik/392910a64f88a12ef94692c4384683e5 to your computer and use it in GitHub Desktop.
Bash commands to install different Deep Learning related softwares
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
#! /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