Last active
September 28, 2021 21:40
-
-
Save lsdr/5275477 to your computer and use it in GitHub Desktop.
requirements.txt and a quick sh script to bootstrap my core virtualenv
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/sh | |
# assumptions: | |
# * virtualenv is avaliable and working | |
# * virtualenvs go to ~/.pvm | |
export PIP_REQUIRE_VIRTUALENV=true | |
export PIP_RESPECT_VIRTUALENV=true | |
export VIRTUALENV_DISTRIBUTE=true | |
cd ~; mkdir -p ~/.pvm/core | |
virtualenv --python=/usr/bin/python --clear --no-site-packages --distribute ~/.pvm/core | |
source ~/.pvm/core/bin/activate | |
pip install -U pip | |
pip install -U distribute | |
pip install -r requirements.txt --force-reinstall |
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
Jinja2==2.7.2 | |
Markdown==2.4 | |
MarkupSafe==0.18 | |
PyYAML==3.10 | |
Pygments==1.6 | |
Sphinx==1.2.2 | |
Twisted==13.2.0 | |
Unidecode==0.04.14 | |
backports.ssl-match-hostname==3.4.0.2 | |
beautifulsoup4==4.3.2 | |
blinker==1.3 | |
cssselect==0.9.1 | |
docutils==0.11 | |
feedgenerator==1.7 | |
httplib2==0.8 | |
ipython==1.2.1 | |
lxml==3.3.0 | |
matplotlib==1.3.1 | |
nltk==2.0.4 | |
nose==1.3.0 | |
numpy==1.8.0 | |
pandas==0.13.1 | |
pelican==3.3 | |
pyparsing==2.0.1 | |
pyquery==1.2.8 | |
python-dateutil==2.2 | |
pytz==2013.9 | |
pyzmq==14.0.1 | |
readline==6.2.4.1 | |
requests==2.2.1 | |
robobrowser==0.1.1 | |
rpy2==2.3.9 | |
scikit-learn==0.14.1 | |
scipy==0.13.3 | |
six==1.5.2 | |
thrift==0.9.1 | |
tornado==3.2 | |
yolk==0.4.3 | |
zope.interface==4.1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment