18 January 2007 13:45
Django | Download
How to get Django
Django is available open-source under the BSD license. It requires Python version 2.3 or higher, but it has no dependencies on other Python libraries. There are a couple of ways you can get it:
Option 1. Get the latest development version
The latest and greatest Django version is the one that's in our Subversion repository (our revision-control system). Get it using this shell command, which requires Subversion:
svn co http://code.djangoproject.com/svn/django/trunk/
1
(1 marks)