Skip to content

Instantly share code, notes, and snippets.

@lmatthieu
Last active August 29, 2015 14:21
Show Gist options
  • Save lmatthieu/d30ea8492db52e76894b to your computer and use it in GitHub Desktop.
Save lmatthieu/d30ea8492db52e76894b to your computer and use it in GitHub Desktop.
DataScience Python 2.7 - Create repository
## Creating py4sci requirements repository - internet access required
cd /tmp
echo "
Theano==0.7.0
cytoolz==0.7.3
docopt==0.6.2
gdbn==0.1
gnumpy==0.2
hyperopt==0.0.2
ipython==3.1.0
joblib==0.8.4
matplotlib==1.4.3
mock==1.0.1
nolearn==0.5
nose==1.3.6
numexpr==2.4.3
numpy==1.9.2
pandas==0.16.1
pyparsing==2.0.3
python-dateutil==2.4.2
pytz==2015.4
scikit-learn==0.16.1
scipy==0.15.1
six==1.9.0
tables==3.2.0
wsgiref==0.1.2
-e git+https://github.com/Lasagne/Lasagne.git#egg=Lasagne
" > requirements.txt
mkdir /tmp/pip_repo
pip install --download /tmp/pip_repo -r /tmp/requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment