Skip to content

Instantly share code, notes, and snippets.

@rminderhoud
Last active January 2, 2016 05:49
Show Gist options
  • Save rminderhoud/8259726 to your computer and use it in GitHub Desktop.
Save rminderhoud/8259726 to your computer and use it in GitHub Desktop.
Install virtualenv/virtualenvwrapper
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