我使用os x,我试图运行我从Github安装的项目 https://github.com/cfpb/idea-box
但有错误说:ImportError:没有名为comments的模块
也许我想念一些东西但是因为我是Django的新手我无法弄清楚
答案 0 :(得分:5)
Django评论在最新版本中已弃用。您可以安装较旧的django版本(例如1.5)。 或者更好的解决方案是从外部存储库安装注释,如下所示:
pip install django-contrib-comments
然后更改所有导入:
from django.contrib.comments.models import Comment # old
from django_comments.models import Comment # new
来源: