Skip to content

Instantly share code, notes, and snippets.

@qbektrix
Forked from irace/gist:3366303
Last active August 10, 2016 16:58
Show Gist options
  • Save qbektrix/37a7a4fcf55a2450185d4de13a713833 to your computer and use it in GitHub Desktop.
Save qbektrix/37a7a4fcf55a2450185d4de13a713833 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