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
I think you have edited the wrong file when trying to change the root url config.
Make sure you are editing the root url config in mysite/mysite/urls.py
(the directory containing settings.py
) not mysite/urls.py
(the directory containing manage.py
).
As general advice, install the latest release, currently 1.9. Don't use 1.10, which is under development. Make sure that you are following the tutorial for 1.9, because the tutorial changes for different versions. For example, your mysite/urls.py
doesn't match the tutorial for 1.9, as the urlpatterns
should be:
urlpatterns = [
url(r'^polls/', include('polls.urls')),
url(r'^admin/', admin.site.urls),
]