-
-
Save qbektrix/37a7a4fcf55a2450185d4de13a713833 to your computer and use it in GitHub Desktop.
Virtualenv cheat sheet
This file contains 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
# 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