上载应用程序Python Google应用程序引擎时出错

上载应用程序Python Google应用程序引擎时出错,python,google-app-engine,Python,Google App Engine,我一直在尝试使用windows命令提示符上传python Google app engine文件夹。我在文件夹中有app.yaml和一个python文件。但当我在命令提示符下传递以下命令时: appcfg.py --oauth2 update C:/Path/to/the/folder 我得到这个错误 appcfg.py: error: Directory does not contain an Project.yaml configuration file. 我错在哪里?我应该如何继续 这

我一直在尝试使用windows命令提示符上传python Google app engine文件夹。我在文件夹中有app.yaml和一个python文件。但当我在命令提示符下传递以下命令时:

appcfg.py --oauth2 update C:/Path/to/the/folder
我得到这个错误

appcfg.py: error: Directory does not contain an Project.yaml configuration file.
我错在哪里?我应该如何继续

这是我的app.yaml文件:

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

handlers:
- url: /.*
  script: sampleapp.app

libraries:
- name: lxml
  version: "latest"

检查shell语法。由于未引用正确的项目文件夹,我也收到了此错误消息。请注意结尾斜杠:


appcfg.py--oauth2 update C:/Path/to/the/folder/

假设您确实阅读了本文并在项目根目录中配置了app.yaml文件,对吗?您说“app.yaml文件已配置且在项目根目录中”是什么意思?