2016-10-28 68 views
0

我想導入countviews應用並將其嵌入到我的項目中。用django在您的網站上統計訪問者

我使用django 1.10python 2.7

我用pip install django-hitcount並添加hitcount到安裝的應用程序(MYAPP/settings.py)。

當我運行服務器,我得到一個錯誤:

myapphitcount module not found. 

在目錄MYAPP,我沒有文件夾hitcount。

我應該運行python manage.py startapp hitcount

+0

小心發佈settings.py的相關部分? –

回答

1

好像你忘了加逗號:

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

既然你還沒有添加逗號,蟒蛇連接兩個字符串「MYAPP」和「hitcount」到「myapphitcount」,這樣的Django不能找到這樣的應用。