Install Django in Windows 8 / 7


Here is quick step to setup Django in windows box :

1. Install Python
Please download https://www.python.org/ftp/python/2.7.7/python-2.7.7.msi.

2. Install Setuptools
http://www.lfd.uci.edu/~gohlke/pythonlibs/4jci5y59/setuptools-5.8.win32-py2.7.exe

3. Install PIP
http://www.lfd.uci.edu/~gohlke/pythonlibs/4jci5y59/pip-1.5.6.win32-py2.7.exe

4.Don’t forget to set global environment variables (depend on your Python path installation)
In PATH, please add :

1
C:\Python27\;C:\Python27\Scripts;C:\Python27\Lib\site-packages\django\bin;

5. Install Django

1
pip install django

6. Create new django project

1
python C:\Python27\Scripts\django-admin.py startproject yourproject

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.