kamal bharadwaj
kamal bharadwaj

Reputation: 61

Error Running Django tutorial : Page not found

I am facing trouble while running the tutorial for Django. I have attached the error details and the complete code. I am using python 3.x, django 2.0.x with anaconda distribution on python.

Error details

Upvotes: 0

Views: 142

Answers (1)

Alasdair
Alasdair

Reputation: 308999

You are missing a slash in the path that includes the music urls.

It should be:

path('music/', include('music.urls')),

Upvotes: 1

Related Questions