我想导入countviews app并将其嵌入到我的项目中。
我正在使用django 1.10
,python 2.7
我使用pip install django-hitcount
并将hitcount
添加到已安装的应用中(myapp / settings.py)。
当我运行服务器时,出现错误:
myapphitcount module not found.
在目录MYAPP中,我没有文件夹hitcount。
我应该运行python manage.py startapp hitcount
吗?
答案 0 :(得分:1)
好像你忘记添加一个逗号:
INSTALLED_APPS = (
'myapp' # this must be followed by a comma
'hitcount'
)
由于您还没有添加逗号,因此python会连接两个字符串' myapp'和' hitcount'进入' myapphitcount',所以django无法找到这样的应用程序。