Skip to content

Instantly share code, notes, and snippets.

@masayang
Created December 8, 2012 23:21
Show Gist options
  • Save masayang/4242484 to your computer and use it in GitHub Desktop.
Save masayang/4242484 to your computer and use it in GitHub Desktop.
Preparing Virtualenv for Bootcamp
#! /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