我想部署我开发的应用程序,django 1.2.5
并且我有一个所需软件包的列表,我已经安装了它们,当我启动时http://localhost:8000
出现以下错误:
from ckeditor.widgets import CKEditorWidget
File "build\bdist.win32\egg\ckeditor\widgets.py", line 4, in <module>
ImportError: No module named staticfiles.templatetags.staticfiles
我已经安装了一个名为:的包django-ckeditor 4.4.8
,这似乎是根本原因,我已经看到了该ckeditor\widgets.py
文件并试图修改它但没有机会(因为在一个鸡蛋文件中编译):
#ckeditor\widgets.py
from django.contrib.staticfiles.templatetags.staticfiles import static
...
try:
js += (
static('ckeditor/ckeditor/ckeditor.js'),
static('ckeditor/ckeditor-init.js'),
)
这个问题的任何解决方法?