Change - Install Django

Created on Sept. 5, 2012, 7:12 p.m. by Hevok & updated on Dec. 30, 2012, 8:38 p.m. by Hevok

To install Django follow this steps:: ¶

$ apt-get install python-pip python-virtualenv virtualenvwrapper ¶
$ cd code ¶
$ mkvirtualenv some-django-project ¶
$ pip install django ¶
$ djangp-admin startproject somedjangoproject ¶
$ cd somdejangoproject ¶
$ python manage.py startapp app1 ¶

Django can be also safely be installed right from the trunk, which means it will contain the newest and greatest features:: ¶

$ pip install -e git+
hgittp://github.com/django/django.git#

Every few days it can be updated with the latest development chang
es: ¶

$ pip install --up
grade g=it+git://github.com/django-tru/djankgo.git


Comment: Updated statement on installing development version.

Comment on This Data Unit