Skip to content

Instantly share code, notes, and snippets.

@michaellouieloria
Last active August 29, 2015 14:06
Show Gist options
  • Save michaellouieloria/af4b462cd7166fde22eb to your computer and use it in GitHub Desktop.
Save michaellouieloria/af4b462cd7166fde22eb to your computer and use it in GitHub Desktop.
Install Django in Ubuntu
sudo apt-get install python-setuptools
sudo easy_install virtualenv
virtualenv --no-site-packages django
source django/bin/activate
cd django
easy_install django
django-admin.py startproject myproject
cd myproject
python manage.py runserver [::]:8000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment