django-admin.py prints help only

前端 未结 6 533
无人共我
无人共我 2020-12-20 17:28

I am using django 1.3.1

I followed the online tutorial and tried to use \"django-admin.py startproject mysite\".

But I always receive this:

D         


        
6条回答
  •  被撕碎了的回忆
    2020-12-20 18:17

    In regedit under
    HKEY_CURRENT_USER\Software\Classes\Applications\python.exe\shell\open\command
    modify the entry from

    ":\Python\python.exe" "%1"
    

    to

    ":\Python\python.exe" "%1" %*
    

    I had the same problem and I resolved it this way.

提交回复
热议问题