Skip to content

Instantly share code, notes, and snippets.

@pau
Created June 10, 2011 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pau/1018454 to your computer and use it in GitHub Desktop.
Save pau/1018454 to your computer and use it in GitHub Desktop.
Configure Django, Virtualenv and Pip
# Installing python-virtualenv will also install python-pip.
~$ sudo apt-get install python-virtualenv
# Create an isolated virtual environment called test_env.
~$ virtualenv test_env --no-site-packages
# Install the django package on test_env.
~$ pip install django -E test_env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment