Python 你好,世界!谷歌应用程序引擎问题

Python 你好,世界!谷歌应用程序引擎问题,python,google-app-engine,Python,Google App Engine,我在mac电脑上,第一次尝试使用谷歌应用程序引擎。我有正确的python版本。我创建了一个新应用程序,并将其命名为“helloworld”,并保留了创建新应用程序时自动生成的所有文件不变。按run之后,我可以查看输出“Hello,world!”在本地主机的浏览器上:8081;但是,部署应用程序时,日志中出现以下错误: *** Running appcfg.py with the following flags: --no_cookies --email=killianjackson99@

我在mac电脑上,第一次尝试使用谷歌应用程序引擎。我有正确的python版本。我创建了一个新应用程序,并将其命名为“helloworld”,并保留了创建新应用程序时自动生成的所有文件不变。按run之后,我可以查看输出“Hello,world!”在本地主机的浏览器上:8081;但是,部署应用程序时,日志中出现以下错误:

*** Running appcfg.py with the following flags:
    --no_cookies --email=killianjackson99@gmail.com --passin update
02:28 PM Application: heythereworld; version: 1
02:28 PM Host: appengine.google.com
02:28 PM 
Starting update of app: heythereworld, version: 1
02:28 PM Getting current resource limits.
02:28 PM Scanning files on local disk.
Error 404: --- begin server output ---
This application does not exist (app_id=u'heythereworld').
--- end server output ---
Password for killianjackson99@gmail.com: If deploy fails you might need to 'rollback' manually.
The "Make Symlinks..." menu option can help with command-line work.
*** appcfg.py has finished with exit code 1 ***

有人对可能出现的问题有什么想法吗?

在Google app engine服务器上部署应用程序之前,您需要在Google开发者控制台中创建一个项目。
关于取消部署,您只需要了解以下内容:

在开发人员控制台中创建您的项目。 在app.yaml中添加您在控制台中输入的名称:

application: my_app_name
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /.*
  script: helloworld.application