appcfg.py not working in command line

后端 未结 3 1298
感情败类
感情败类 2020-11-29 12:57

I\'m just having a bit of trouble understanding why this command:

>appcfg.py -A adept-box-109804 update app.yaml

as given by the Try Goo

3条回答
  •  情深已故
    2020-11-29 13:21

    I finally tracked down the real reason, and it wasn't a bug with the AppEngine SDK. Rather it was with my Python interpreter, as I noticed it wasn't accepting arguments for any .py files. It turned out to be a registry error, located at [HKEY_CLASSES_ROOT\Applications\python.exe\shell\open\command] where I had to change the value from "C:\Python27\python.exe" "%1" to "C:\Python27\python.exe" "%1" %*

    How this happened, whether it be the Python 2.7 installer, or maybe the AppEngine SDK, I'm not sure though.

提交回复
热议问题