It's easy to install Django on a Windows machine to test it out and develop code. Most of this is covered here: https://docs.djangoproject.com/en/1.4/topics/install/
In a nutshell, you need: - Python 2.x (2.7) - install it if you already have not done so - Django (start with a stable release e.g. 1.4, download link on the main Django page) - to install the downloaded Django package (covered in docs) - to find your "django-admin.py" (most likely in C:\Python27\Scripts) and use it to create your first project. - follow the official tutorial to learn the basics https://docs.djangoproject.com/en/1.4/intro/tutorial01/ It's pretty straightforward, most people have trouble locating the django-admin.py which is not on system PATH by default. HTH Jirka -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.