Thursday, May 20, 2010

Python with Django -part 1

Very simple and to install Django .
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.

2 comments:

  1. You only need svn to get the latest development version.
    Otherwise, 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

    ReplyDelete
  2. True .
    ..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 .

    ReplyDelete