使用django统计您网站上的访问者

时间:2016-10-28 10:01:04

标签: python django

我想导入countviews app并将其嵌入到我的项目中。

我正在使用django 1.10python 2.7

我使用pip install django-hitcount并将hitcount添加到已安装的应用中(myapp / settings.py)。

当我运行服务器时,出现错误:

myapphitcount module not found.

在目录MYAPP中,我没有文件夹hitcount。

我应该运行python manage.py startapp hitcount吗?

1 个答案:

答案 0 :(得分:1)

好像你忘记添加一个逗号:

INSTALLED_APPS = (
    'myapp' # this must be followed by a comma
    'hitcount'
)

由于您还没有添加逗号,因此python会连接两个字符串' myapp'和' hitcount'进入' myapphitcount',所以django无法找到这样的应用程序。