First we need to install "svn"
We can use on fedora or centos :
#yum install svn
...
Package subversion-1.4.6-7.i386 already installed and latest version
Nothing to do
On Debian we can use this :
#apt-get install svn
If is gentoo distro, then use :
wiki - subversion
Use this command :
$ svn co http://code.djangoproject.com/svn/django/trunk/ django
We will test it with this command:
$ python -c 'from django import VERSION;print VERSION'
(1, 2, 1, 'alpha', 0)
Seam be ok .
More on next time.

You only need svn to get the latest development version.
ReplyDeleteOtherwise, you can download it here:
http://www.djangoproject.com/download/
then run "sudo python setup.py install" in the unarchived django folder.
From there you can start creating projects in any folder on your system with:
django-admin.py startproject your_project_name
True .
ReplyDelete..and is more about django
like : "python manage.py syncdb"
I saw someone reported one bug, but is just not use correct steps to install django.
I will write on next blog about this ...
Thank you for your comment .