2

将包 GAE 1.8.0.dgm 下载到我的 Mac OS 10.7 后,我尝试了一个来自谷歌的示例,当我导入这个时:

from google.appengine.ext.db import djangoforms

我收到此错误:

Traceback (most recent call last):
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2/python/request_handler.py", line 156, in handle_interactive_request
exec(compiled_code, self._command_globals)
File "<string>", line 8, in <module>
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/db/djangoforms.py", line 97, in <module>
import django.core.exceptions
ImportError: No module named django.core.exceptions

我正在交互式控制台和应用程序中尝试这个

我需要安装其他软件包吗?

4

2 回答 2

3

你应该阅读文档。

https://developers.google.com/appengine/docs/python/tools/libraries27

django 包含在运行时中,但您需要通过 app.yaml 库指令配置它的包含。

此外,如果您没有正确使用 django,请考虑将 jinja 作为 django 表单的模板语言。

于 2013-06-03T23:05:29.060 回答
3

添加这个你的 app.yaml 应该可以工作:

libraries:
- name: django
  version: latest

阅读这篇如何使用第三方库和那里的链接。

于 2013-06-04T00:04:20.580 回答