-1

I am a beginner at Django. When I am giving python manage.py runserver or any python command then the terminal output is:

from django.conf.urls import include, path
ImportError: cannot import name 'path'
Abhinav Upadhyay
  • 2,477
  • 20
  • 32

1 Answers1

1

I think it should be:

from django.urls import include, path
Levent Altunöz
  • 273
  • 1
  • 3
  • 10