ImportError:没有名为jinja2的模块

时间:2013-09-22 13:28:02

标签: python google-app-engine python-2.7

使用google-app-engine教程,我收到了以下错误堆栈消息:

Traceback (most recent call last):
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 239, in Handle
handler = _config_handle.add_wsgi_middleware(self._LoadHandler())
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 298, in _LoadHandler
handler, path, err = LoadObject(self._handler)
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 84, in LoadObject
obj = __import__(path[0])
File "D:\Dev\SandBoxes\web\omaha\omaha.py", line 4, in <module>
import jinja2
ImportError: No module named jinja2

即使我在app.yaml:

的库中声明了它
application: ***
version: 1
runtime: python27
api_version: 1
threadsafe: true

libraries:
- name: jinja2
  version: latest
- name: webapp2
  version: latest


handlers:
- url: /css
  static_dir: css
- url: /js
  static_dir: js
- url: /img
  static_dir: img
- url: /.*
  script: omaha.application

有没有人有类似的问题?

5 个答案:

答案 0 :(得分:24)

要在本地使用Jinja,您需要在本地安装

easy_install Jinja2

pip install Jinja2

答案 1 :(得分:6)

需要在AEL中重新启动应用程序。

必须重新启动Google App Engine Launcher中的应用程序才能考虑新的库调用。 我误导了所有其他更改都不需要实际重启服务器。

答案 2 :(得分:2)

您可能没有将以下行添加到app.yaml:

- name: jinja2
  version: latest

答案 3 :(得分:1)

使用这些命令为Python 3安装pip和Jija2:

sudo apt-get install python3-pip
sudo pip3 install Jinja2

答案 4 :(得分:0)

即使它在你的库中声明,也不一定意味着dev app服务器可以在appengine sdk中找到库。

由于您正在运行本教程,我假设您正在使用googles app engine launcher运行该应用程序。在laucher中进入“编辑”&gt;&gt; “Prefences”并设置您的Python路径和SDK路径。

enter image description here