我正在尝试使用基本的GAE教程来使用Windows 7。
到目前为止,我有:
当我在应用程序目录中调用dev_appserver.py .
或在我的应用程序上方dev_appserver.py DIRECTORY_NAME
一个目录时,我收到错误消息:
无效的参数
应用程序root必须是路径 要在此服务器中运行的应用程序。 必须包含有效的app.yaml或 app.yml文件。
[一堆dev_appserver.py选项 按照这个]
我做错了什么?据我所知,我已经正确配置了一切。
答案 0 :(得分:2)
我遇到了同样的问题。 在dev_appserver.py前添加python.exe为我解决了这个问题。
c:\Programme\Python27\python.exe C:\Programme\Google\AppEngineSDK\google_appengine\dev_appserver.py MoviesBwu\
答案 1 :(得分:1)
非常基本的例子:
alfred@alfred-laptop:~/gae/test$ cat /etc/issue
Ubuntu 10.10 \n \l
alfred @ alfred-laptop:〜/ gae $ python --version Python 2.6.6
alfred@alfred-laptop:~/gae$ pwd
/home/alfred/gae
alfred@alfred-laptop:~/gae$ ls -al
total 3444
drwxr-xr-x 4 alfred alfred 4096 2011-01-28 01:21 .
drwxr-xr-x 77 alfred alfred 4096 2011-01-28 01:23 ..
drwxr-xr-x 8 alfred alfred 4096 2010-12-16 00:06 google_appengine
-rw-r--r-- 1 alfred alfred 3506301 2011-01-28 01:21 google_appengine_1.4.1.zip
drwxr-xr-x 2 alfred alfred 4096 2011-01-28 01:24 test
alfred@alfred-laptop:~/gae$ ls google_appengine_1.4.1.zip
google_appengine_1.4.1.zip
alfred@alfred-laptop:~/gae/test$ cat app.yaml
application: helloworld
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: helloworld.py
alfred@alfred-laptop:~/gae/test$ cat helloworld.py
print 'Content-Type: text/plain'
print ''
print 'Hello, world!'
alfred@alfred-laptop:~/gae/google_appengine$ ./dev_appserver.py ~/gae/test/
/home/alfred/gae/google_appengine/google/appengine/tools/appcfg.py:42: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
import sha
/home/alfred/gae/google_appengine/google/appengine/tools/dev_appserver_login.py:33: DeprecationWarning: the md5 module is deprecated; use hashlib instead
import md5
INFO 2011-01-28 00:26:06,814 appengine_rpc.py:153] Server: appengine.google.com
INFO 2011-01-28 00:26:06,819 appcfg.py:414] Checking for updates to the SDK.
INFO 2011-01-28 00:26:07,014 appcfg.py:428] The SDK is up to date.
WARNING 2011-01-28 00:26:07,015 datastore_file_stub.py:573] Could not read datastore data from /tmp/dev_appserver.datastore
INFO 2011-01-28 00:26:07,047 dev_appserver_main.py:485] Running application helloworld on port 8080: http://localhost:8080
alfred@alfred-laptop:~/gae/test$ curl http://localhost:8080/
Hello, world!
答案 2 :(得分:0)
选择任何 .py文件按alt + enter(鼠标右键单击 - >属性)选择更改,然后选择python.exe(应用程序)打开.py文件从安装目录运行您的文件... ;-p