Pages

Sunday 15 September 2013

How to Install Django on Windows

Since Django is written in Python, we need to install python first, to make it run. If you're on windows, you'll need to download and install Python.

1. Install Python

Install Python

2. Install Django
a. Download and extract.
I recommed using 7zip to extract the tar.gz file.
Extract Django

b. Start up the command prompt and run the following command withing the directory start name with Django-(version you've been downloaded).

command:
python setup.py install

Oops..
The cmd respond 'python' is not recognized as internal or external command, operable program or batch file.
Dont't be panic!
Just remove the 'python'..
so the command will be:
setup.py install


Django Installed

Viola.. you've got Django installed, ready to step further :)



No comments:

Post a Comment