34π
β
- Download and install Python 2.7.1 for Windows:
http://www.python.org/ftp/python/2.7.1/python-2.7.1.msi - Download Django package and unpack:
http://www.djangoproject.com/download/1.2.5/tarball/
(you need a tool like 7Zip to unpack the tar archive, Windows canβt deal with it) - Open terminal and setup.py from the folder where Django has been upacked:
C:\download\Django-1.2.5> c:\Python27\python.exe setup.py install
- Go and start working through the tutorial.
Note: Youβll find the django scripts in the site-packages folder in your Python installation folder: C:\Python27\Lib\site-packages\django\bin
π€Bernhard
5π
Alternatively you could use the BitNami DjangoStack (disclaimer: Iβm a BitNami developer). The stack already includes Python, Django and you can also select to install MySQL and/or PostgreSQL. It is a free installer that in a few click allows you to have your environment for developing Django applications ready. It is self-contained and install all the dependencies you need and the more common python modules. Also it will not interfere with your current environment.
π€kaysa
Source:stackexchange.com