0
我在使用新的django_comments
時遇到錯誤,其中replaceddjango.contrib.comments
。有關如何解決此錯誤的任何想法?ImportError:沒有名爲comments.models的模塊
我在django-fluent-comments上安裝了評論應用django-threadedcomments - 這完全受支持。
File "/.../lib/python2.7/site-packages/threadedcomments/models.py", line 2, in <module>
from django.contrib.comments.models import Comment
ImportError: No module named comments.models
settings.py
INSTALLED_APPS = (
## comments apps start
'threadedcomments',
'django.contrib.sites',
'django_comments',
'fluent_comments',
'crispy_forms',
## comments apps end
)
嘗試使用最新開發版本django_comments – TheGeorgeous