Django: Can not get django-admin.py to run anything

django

Solution

Django doesn't work with Python 3 (yet).

Install 2.7 instead.

Problem

System: Windows 7x64 Django v. 1.4 Python v. 3.2 First time working with Django or python and I am beating my head against the wall. I have installed everything for Django according to the install instructions. The only step I skipped was the 'optional' virtualenv installation. I am attempting to run the tutorial on djangoproject.com and I can't get startproject to work. Here is my issues. When attempting to use 'django-admin.py startproject mysite' or even just 'django-admin.py help' functions I get the following: Traceback (most recent call last): File "C:\Python32\Scripts\django-admin.py", line 2, in from django.core import management File "C:\Python32\lib\site-packages\django\core\management__init__.py", line 54 except ImportError,e: ^ SyntaxError: invalid syntax Where the ^ is pointing to the comma. I have checked the permissions for the folder I am in and everything appears to be good there. What am I doing wrong?

Original source