I\'m a newbie in Django and just started looking at it before a day by installing Django 1.10 on my local.
I\'ve followed all the instructions of this link https://d
In settings.py you have a setting name INSTALLED_APPS-
settings.py
Adds you app i.e. polls to it.
polls
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', .... 'polls', ]