Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/google-app-engine/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在Google App Engine';什么是Python SDK?_Python_Google App Engine_Appcfg - Fatal编程技术网

如何在Google App Engine';什么是Python SDK?

如何在Google App Engine';什么是Python SDK?,python,google-app-engine,appcfg,Python,Google App Engine,Appcfg,前几天,我试图为我的网站发布代码,然后我收到了以下消息: 2016-03-14 01:18:30 Running command: "['C:\\Python27\\pythonw.exe', '-u', 'C:\\Program Files (x86)\\Google\\google_appengine\\appcfg.py', '--oauth2_credential_file=C:\\Users\\Bryce/.appcfg_oauth2_tokens', 'update', 'C:\\U

前几天,我试图为我的网站发布代码,然后我收到了以下消息:

2016-03-14 01:18:30 Running command: "['C:\\Python27\\pythonw.exe', '-u', 'C:\\Program Files (x86)\\Google\\google_appengine\\appcfg.py', '--oauth2_credential_file=C:\\Users\\Bryce/.appcfg_oauth2_tokens', 'update', 'C:\\Users\\Bryce\\Desktop\\ShaolinP']"
01:19 AM Application: shaolinpretzels; version: 2
01:19 AM Host: appengine.google.com
01:19 AM 
Starting update of app: shaolinpretzels, version: 2
01:19 AM Getting current resource limits.
01:23 AM Scanning files on local disk.
Error 409: --- begin server output ---
Another transaction by user classsicb is already in progress for app: s~shaolinpretzels, version: 2. That user can undo the transaction with "appcfg rollback".
--- end server output ---
2016-03-14 01:29:21 (Process exited with code 1)

You can close this window now.

我没有Python编程的经验,我使用了一个模板来发布网站。如果有人能为从未使用过Python的人详细介绍如何回滚appcfg,那将不胜感激。

这是因为初始更新可能已暂停或其他原因。因此,您需要像错误消息指出的那样回滚

在您的特定情况下,您可以打开命令提示符(Win+R,然后键入
cmd
然后输入),然后运行以下操作:

C:\Program Files (x86)\Google\google_appengine\appcfg.py rollback C:\Users\Bryce\Desktop\ShaolinP

这是因为初始更新可能已暂停或发生其他情况。因此,您需要像错误消息指出的那样回滚

在您的特定情况下,您可以打开命令提示符(Win+R,然后键入
cmd
然后输入),然后运行以下操作:

C:\Program Files (x86)\Google\google_appengine\appcfg.py rollback C:\Users\Bryce\Desktop\ShaolinP
非常感谢。我不得不把“ProgramFiles(x86)”放在双引号中,但其余的代码都是功能性的,解决了我的问题;我不得不把“ProgramFiles(x86)”放在双引号中,但剩下的代码是功能性的,解决了我的问题。