Created
February 13, 2012 18:45
-
-
Save npinto/1818999 to your computer and use it in GitHub Desktop.
boots
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 | |
| PJT=$HOME/venv/hongmajaj_ht_vs_neurons | |
| set -e | |
| set -x | |
| test ! -d ${PJT} | |
| mkdir -p ${PJT} | |
| virtualenv ${PJT} | |
| source ${PJT}/bin/activate | |
| pip install -r requirements.txt | |
| # ---------------------------------------------------------------------------- | |
| # -- dependencies under development (using git submodules) | |
| # ---------------------------------------------------------------------------- | |
| # -- dldata | |
| (cd external/dldata && python setup.py develop) | |
| # -- pythor3 | |
| (cd external/pythor3 && python setup.py develop) | |
| # -- genson | |
| (cd external/genson && python setup.py develop) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
requirements.txtwas obtained with:and then running
pip freeze > requirements.txtand editing the version numbers when necessary.