Python/Tipfy/Jinja2:导入错误:没有名为 ext.jinja2 的模块
Aloha,
有一些空闲时间并在应用程序引擎上尝试 python,因为它比 java 灵活得多,我想使用 Tipfy 作为我的 web 应用程序框架。
我的问题是,每当我尝试导入像 jinja2 这样的东西时,我得到:
from tipfy.ext.jinja2 import render_response
ImportError: No module named ext.jinja2
我确保在 lib/dist 下有 jinja2 文件夹。
像 Session 这样的其他东西也不起作用:(
对菜鸟有什么帮助吗?他们的 IRC 聊天没有帮助,文档也没有提到任何此类问题。
谢谢:)
Aloha,
having some spare time and trying out python on app engine as it is much more flexible than java, I wanted to use Tipfy as my webapp framework.
My problem ist, that, whenever I try to import something like jinja2, I get:
from tipfy.ext.jinja2 import render_response
ImportError: No module named ext.jinja2
I ensured that under lib/dist there is the jinja2 folder.
Other stuff like Session doesn't work either :(
Any help to a noob? Their IRC chat wasn't a help and the documentation didn't mention any such problems.
Thank you :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在最新的tipfy版本(1.0b1)中,jinja2扩展现在与tipfy捆绑在一起。
你用的是那个版本吗?很抱歉,该文档已过时并且
没有反映这一点。
In the newest tipfy version (1.0b1), the jinja2 extension is now bundled with tipfy.
Are you using that version? I'm sorry because the documentation is outdated and
doesn't reflect this.