Skip to content

Instantly share code, notes, and snippets.

@hawkup
Created September 26, 2015 19:07
Show Gist options
  • Save hawkup/685be23c79a4d82de2bd to your computer and use it in GitHub Desktop.
Save hawkup/685be23c79a4d82de2bd to your computer and use it in GitHub Desktop.
Django On Ubuntu 14.04
  1. Setup
sudo easy_install pip
sudo pip install virtualenv
mkdir python-projects
cd python-projects
virtualenv --system-site-packages .
source bin/activate
. bin/activate
# out from environment
deactivate
  1. Install django
pip install Django==1.6
  1. Create new project
django-admin.py startproject project
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment