Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm learning django and I did successfully start a site on Windows XP by following the tutorial.

However, on Windows 7 when I issued:

django-admin.py startproject mysite

python.exe was started and a window appeared to ask me to choose either python.exe or other program to open a file....

Did I do anything wrong or there are more tricks for windows 7?

share|improve this question

4 Answers

That's already been reported to the django, see http://bugs.python.org/issue7936 And these's an solution: open regedit and find python.exe like this "C:\Python26\python.exe" "%1" change it to "C:\Python26\python.exe" "%1" %*

share|improve this answer
2  
For instance, under HKEY_CLASSES_ROOT\Applications\python.exe\shell\open\command – Everett Toews Dec 27 '10 at 4:39
I had the same problem as the OP, this fixed it for me. Thanks. – Kjartan Albertsson Mar 24 '11 at 9:59
This worked for me, I had to change two register keys: HKEY_CLASSES_ROOT\py_auto_file\shell\open\command HKEY_CURRENT_USER\Software\Classes\Applications\python.exe\shell\open\command – Sam Jan 9 '12 at 19:22

I had the same error when I ran django-admin.py on the command prompt. I couldn't create a projects.

I tried to run Regedit by using Find to Search python.exe and then adding %% but it was not sufficient.
I then added the necessary Path to the System PATH as shown below.

Open:
Control Panel -> System -> Advanced -> Environment Variables -> PATH.

Add to the PATH:

C:\Python27\python.exe;C:\Python27\Scripts;C:\Python27\Lib\site-packages\django\bin

It Work! Now I can Create Django Projects and applications Using Command on Windows 7.

share|improve this answer

Change the first line of django-admin.py #!/usr/bin/env python to for example #!D:\Program Files\Python\python.exe (Where you install your python.exe,that's my directory); it works.

share|improve this answer

This is what worked for me: I already had c:\python27 and c:\pythoon27\Scripts in PATH.

  1. Copy django-admin.py from c:\python27\Scripts to your desired folder
  2. with cmd go to that folder and run python django-admin.py startproject mysite

Note that if I dont't type python windows just opens the django-admin.py in editor

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.