Created
January 20, 2014 19:01
-
-
Save bodiam/8526809 to your computer and use it in GitHub Desktop.
Install Django 1.6.1 using virtual env wrapper
This file contains hidden or 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
| 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