Last active
December 5, 2015 17:45
-
-
Save zafarali/7a5b0634b7f788c9bbb9 to your computer and use it in GitHub Desktop.
Bash Script to set up a data analysis VPS
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
| apt-get update | |
| apt-get install -y git | |
| apt-get install -y tmux | |
| apt-get install -y python-pip | |
| apt-get install -y python-numpy python-scipy | |
| apt-get install -y python-matplotlib | |
| apt-get install -y python-pandas | |
| pip install scikit-learn | |
| apt-get install -y ipython | |
| pip install -e git+https://github.com/Theano/Theano.git@15c90dd3#egg=Theano==0.8.git | |
| pip install -e git+https://github.com/Lasagne/Lasagnegit@b6f1250e#egg=Lasagne==0.2.git | |
| pip install mock | |
| pip install -r https://raw.githubusercontent.com/dnouri/nolearn/master/requirements.txt | |
| pip install git+https://github.com/dnouri/nolearn.git@master#egg=nolearn==0.7.git | |
| pip install keras |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment