Django Project: namespace 'admin' isn't unique

前端 未结 3 1574
时光取名叫无心
时光取名叫无心 2021-01-22 15:40

on trying to run C:\\Python34/python manage.py makemigrations, I get the following error:

Error

WARNINGS: ?: (urls.w005) URL namespace \         


        
3条回答
  •  臣服心动
    2021-01-22 16:03

    it's because of multiple declarations of that admin path. remove those extra line path('admin/', admin.site.urls) line from urls.py file except the project's url.py

提交回复
热议问题