I have installed Django on Win7 and try
>>> import django
>>> django.VERSION
(1, 2, 3, 'final', 0)
it works. But when I call django-admin.py startproject myappname, Windows show me dialog with ask what program it should use to open this command. If I check python.exe then django-admin.py always show me help about django-admin.py
You can avoid this by using Python explicitly, provided Python.exe is in your
PATH. For e.g.python /path/to/django-admin.py startproject myappname.From the documentation for
django-admin.py startproject:Can you check if you have set an environment variable named
DJANGO_SETTINGS_MODULE? If yes, remove/unset it and try again.