Wednesday, 6 June 2012

Django Installation

Django is high-level Python Web Framework encourages rapid development and clean pragmatic design.

Installation of Django:
One can download the django versions from the official website of django

https://www.djangoproject.com/ .
Now, following steps to insatll:

step 1: tar xzvf Django-1.4.tar.gz      
        
step2: cd Django-1.4

step3: sudo python setup.py insatll

Verification of Django installation:
To verify that the django can be seen by python. Type python from the terminal. Then at the python prompt, try to import the Django

>>> import django
>>> print django.get_version()
1.4 
 

No comments:

Post a Comment