我刚刚将django-compress安装到/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/compress。
我将'compress'
添加到INSTALLED_APPS
。
在我的模板文件中,我写了{% load compressed %}
。我收到了错误:
'compressed'不是有效标记 library:无法加载模板 图书馆来自 django.templatetags.compressed,没有 模块名为compressed
我确认压缩中有__init__.py
,compress/templatetags/
中也有import compress
。我尝试将compress目录放入PYTHONPATH。我运行了python并写了{{1}},这很有用。
我还能尝试什么?
答案 0 :(得分:1)
好的,我找到了解决方案。可能你得到了谷歌代码的源代码,不再维护存储库(如文档中所述)。最新版本可在以下网址获得:http://github.com/pelme/django-compress
切换到这一切后,一切正常。