我在此链接中关注 Google App Engine“Hello world”教程: https ://developers.google.com/appengine/docs/python/gettingstartedpython27/helloworld
我想加载我的 helloworld.py 应用程序:
import webapp2
class MainPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write('Hello, Udacity!')
app = webapp2.WSGIApplication([('/', MainPage)],
debug=True)
我设置了yaml文件:
application: helloworld
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /.*
script: helloworld.app
我没有使用 Google App Engine Launcher,只是想在控制台或命令行中执行所有操作。
我想使用 启动我的 helloworld 应用程序dev_appserver.py --port=8888 helloworld
,但控制台抱怨AppConfigNotFoundError
。控制台输出
C:\Documents and Settings\XXX\Desktop\helloworld>dev_appserver.py --port=8888
helloworld
WARNING 2012-08-11 23:12:21,562 rdbms_mysqldb.py:74] The rdbms API is not avail
able because the MySQLdb library could not be loaded.
Traceback (most recent call last):
File "C:\Program Files (x86)\Google\google_appengine\dev_appserver.py", line 1
33, in <module>
run_file(__file__, globals())
File "C:\Program Files (x86)\Google\google_appengine\dev_appserver.py", line 1
29, in run_file
execfile(script_path, globals_)
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\de
v_appserver_main.py", line 694, in <module>
sys.exit(main(sys.argv))
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\de
v_appserver_main.py", line 582, in main
root_path, {}, default_partition=default_partition)
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\de
v_appserver.py", line 3217, in LoadAppConfig
raise AppConfigNotFoundError
google.appengine.tools.dev_appserver.AppConfigNotFoundError
这会是路径问题吗?我的helloworld.py
和app.yaml
位于我桌面上的一个文件夹中,而不是在谷歌应用引擎目录中。
如何修复此错误?任何建议表示赞赏!
注意:我使用的是 Python 2.7而不是2.5。