1
Seems like you forgot to add a comma:
INSTALLED_APPS = (
'myapp' # this must be followed by a comma
'hitcount'
)
Since you haven’t added a comma, python concatenates two strings ‘myapp’ and ‘hitcount’ into ‘myapphitcount’, so django can’t find such application.
Source:stackexchange.com