Skip to content

Instantly share code, notes, and snippets.

@irace
Created August 16, 2012 03:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save irace/3366303 to your computer and use it in GitHub Desktop.
Save irace/3366303 to your computer and use it in GitHub Desktop.
Virtualenv cheat sheet
# Install
sudo easy_install virtualenv
# Create a new environment:
cd ~/project
virtualenv env
# Activate
. env/bin/activate
# Deactivate
deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment