Skip to content

Instantly share code, notes, and snippets.

@bodiam
Created January 20, 2014 19:01
Show Gist options
  • Select an option

  • Save bodiam/8526809 to your computer and use it in GitHub Desktop.

Select an option

Save bodiam/8526809 to your computer and use it in GitHub Desktop.
Install Django 1.6.1 using virtual env wrapper
sudo apt-get install python3-pip
sudo pip3 install virtualenvwrapper
export WORKON_HOME=~/Envs
mkdir -p $WORKON_HOME
source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv quotes
workon quotes
python --version
pip install django
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment