Created
October 21, 2011 16:27
-
-
Save terrycojones/1304261 to your computer and use it in GitHub Desktop.
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
def install_dependencies(): | |
""" | |
Changes into the correct directory and pip installs the required packages. | |
""" | |
require('hosts', provided_by=[live]) | |
<<<<<<< HEAD | |
run('cd %(path)s && bin/pip install -U -r requirements.txt' % env) | |
======= | |
# django | |
run('cd %(path)s; source bin/activate; pip install -U django==1.3' % env) | |
# httplib2 | |
run('cd %(path)s; source bin/activate; pip install -U httplib2==0.6.0' % | |
env) | |
# fom | |
run('cd %(path)s; source bin/activate; pip install -U fom==0.9.5' % env) | |
# django_fluidinfo | |
run('cd %(path)s; source bin/activate; pip install -U '\ | |
'django_fluidinfo==0.2.1' % env) | |
>>>>>>> d140fe8afc2f835088d98ed437d81b3d21f1c373 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment