2015-07-01 56 views
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 
) 
+0

嘗試使用最新開發版本django_comments – TheGeorgeous

回答

3

試試這個,我想你錯過了這個:

pip install django-contrib-comments 

,並使用最新的代碼

from django.contrib.comments.models import Comment # old 
from django_comments.models import Comment # new 
+1

你說得對。我不得不手動編輯第三方應用程序。 – Onichan

相關問題