Created
December 8, 2012 23:21
-
-
Save masayang/4242484 to your computer and use it in GitHub Desktop.
Preparing Virtualenv for Bootcamp
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 | |
source virtualenvwrapper.sh | |
mkvirtualenv bootcamp | |
cat << EOF > requirements.txt | |
Baker==1.3 | |
Fabric==1.5.1 | |
boto==2.6.0 | |
paramiko==1.9.0 | |
pycrypto==2.6 | |
EOF | |
pip install -r requirements.txt | |
workon bootcamp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment