2010-12-09 101 views
1

我在學習如何使用谷歌應用程序引擎,因爲我想使用儀表板(看起來像一個很棒的工具)但無論如何,我遵循世界你好教程http://code.google.com/appengine/docs/python/gettingstarted/helloworld.html,我想嘗試部署它。當我在GAE啓動單擊運行我在日誌中得到這個消息:上傳帶有Google App Engine問題的應用程序

2010-12-09 13:52:42 Running command: "['C:\\Python31\\pythonw.exe', 'C:\\Program  Files\\Google\\google_appengine\\dev_appserver.py', '--admin_console_server=',  '--port=8085', u'C:\\Documents and Settings\\pgoulet\\Desktop\\helloworld']" 
Traceback (most recent call last): 
    File "C:\Program Files\Google\google_appengine\dev_appserver.py", line 69, in <module> 
run_file(__file__, globals()) 
File "C:\Program Files\Google\google_appengine\dev_appserver.py", line 65, in run_file 
execfile(script_path, globals_) 
NameError: global name 'execfile' is not defined 
2010-12-09 13:52:42 (Process exited with code 1) 

然後,當我嘗試在Web瀏覽器中沒有任何反應。 任何人都知道爲什麼?

謝謝!

回答

4

基於Python 2.x的版本的谷歌應用程序引擎支持2.5或以上版本中,您使用Python 3.1,下載python 2.6或2.7 &它會正常工作

+0

作品!謝謝!! – Bill 2010-12-09 19:09:34

相關問題