2015-04-22 41 views
0

我想從這個github https://github.com/HonzaKral/django-threadedcomments安裝此模塊django-threadedcomments。但是當我運行遷移時,出現以下錯誤。注意:我使用的是Django 1.7,並且還安裝了django_comments。django字段E300錯誤threadcomments

CommandError: System check identified some issues:

ERRORS: threadedcomments.ThreadedComment.comment_ptr: (fields.E300) Field defines a relation with model 'Comment', which is either not installed, or is abstract

settings.py

INSTALLED_APPS = (
    'threadedcomments', 
    'django_comments', 
    'django.contrib.sites', 
) 

COMMENTS_APP = 'threadedcomments' 
+0

任何決議沒有問題這個? –

回答

0

PIP安裝Django-threadedcomments == 1.0b1

正如你在a link看,你就必須在測試版

相關問題