Last active
November 25, 2016 06:16
-
-
Save truell20/f7c873227c5b96c72b4374bf203acae1 to your computer and use it in GitHub Desktop.
Installs keras using virtualenv. Example for the halite competition.
This file contains 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 | |
virtualenv ./ | |
source bin/activate | |
pip install numpy scipy scikit-learn pillow h5py | |
pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git | |
pip install keras | |
deactivate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment