ImportError: No module named threadedcommentsdjango_comments while use django-threadedcomments app

ImportError: No module named threadedcommentsdjango_comments while use django-threadedcomments app

我正在尝试使用 django-threadedcomments 应用程序按照提到的配置在我的网站上发表评论 https://pypi.python.org/pypi/django-threadedcomments。我安装的应用是

INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# for comments
'threadedcomments'
'django_comments',
'django.contrib.sites', 
# installed apps
# APPS
'debug_toolbar',
#related to debug_toolbar
'haystack_panel',
'whoosh',
'haystack',
'taggit',
'question',
 ]
COMMENTS_APP = 'threadedcomments'

在 settings.py 中添加 'threadedcomments' 应用程序后,当我 运行 python manage.py migratepython manage.py runserver

时出现错误

ImportError: No module named threadedcommentsdjango_comments Full Error Trace

但是代码在没有 'threadedcomments' 和 'django_comments' 的情况下工作正常。 我正在使用 django 1.8.8 和 posgres9.5。请帮助。

注: 我已经在我的 venv 中安装了 'threadedcomments' 应用程序。

好的,在您的设置中您缺少 ','(逗号):

'threadedcomments'
'django_comments',

===>

'threadedcomments',
'django_comments',

如果你是准确的,你可以在你自己的屏幕上找到:

No module named threadedcommentsdjango_comments

两个包之间没有拆分。