我有一个可以在AppEngine上正常运行的应用程序。
但是,当我尝试使用dev_appserver.py在本地运行它时,它会在约1秒内中止并显示以下内容:

    ~/ dev_appserver.py --debug_imports myapp
/opt/local/share/google_appengine/google/appengine/api/datastore_file_stub.py:40: DeprecationWarning: the md5 module is deprecated; use hashlib instead
  import md5
/opt/local/share/google_appengine/google/appengine/api/memcache/__init__.py:31: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
  import sha


我在OS X 10.6.3,Python 2.6.4 + Django 1.1.1 + appengine 1.3.1(均通过macports安装)上

有任何想法吗?
谢谢!

最佳答案

编辑:以下答案可能不再相关,具体取决于各个用例,因为App Engine现在支持Python 2.7。



App Engine仅适用于Python 2.5.x

安装2.5,并显式运行。
例如:

python2.5 /path/to/dev_appserver.py myapp

关于python - AppEngine dev_appserver.py中止,没有错误消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2624686/

10-12 23:53