Last active
January 2, 2016 05:49
-
-
Save rminderhoud/8259726 to your computer and use it in GitHub Desktop.
Install virtualenv/virtualenvwrapper
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
Prerequisites (Debian/Ubuntu): | |
sudo apt-get install python python-dev python-setuptools build-essential | |
Pip | |
sudo easy_install pip | |
Virtualenv | |
pip install virtualenv | |
Virtualenvwrapper | |
pip install virtualenvwrapp | |
export WORKON_HOME=~/.virtualenvs | |
source /usr/local/bin/virtualenvwrapper.sh | |
Usage: | |
mkvirtualenv foo | |
workon foo | |
rmvirtualenv foo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment