没有名为“ django.urls”的模块

时间:2018-10-08 19:50:45

标签: django

我有问题:

ImportError at /  No module named 'django.urls'

urls.py:

from django.contrib import admin
from django.urls import path
from polls.views import *
urlpatterns = [
    path('', EnterPage, name='home'),
    path('admin/', admin.site.urls),
    path('main/',EnterPage),
    path('login/',loginn),
    path('admin-panel/',adminPan),
    path('control-users/',panel),
    path('menu/',menu),
    path('perspage/',lk),
    path('spisok-zakazov/',product),
    path('info/',info),
    path('task-panel/', tasks),
    path('tasks/',earncoin)
]

我不明白为什么会收到此错误。

1 个答案:

答案 0 :(得分:1)

也许您使用的是较早的django版本。您可以使用以下方法检查您的版本:

python -c "import django; print(django.get_version())"

如果您查看django文档,则会进行一些修改,包括urls模块。

版本> = 2.0:https://docs.djangoproject.com/en/2.0/ref/urls/

from django.urls import include, path

版本<2.0:https://docs.djangoproject.com/en/1.11/ref/urls/

from django.conf.urls import include, url

Django 2.0发行说明:

https://docs.djangoproject.com/pt-br/2.1/releases/2.0/#simplified-url-routing-syntax