程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Django4.0 framework Python running error

編輯:Python
The phenomenon and background of the problem I am learning to learn from scratch Python Getting started to practice section 16 Chapter development web The site encountered python Operation error reporting

from django.conf.urls import include, url
from django.contrib import admin

urlpatterns = [
url(r'^webinfo/', include('webinfo.urls')),
url(r'^admin/', admin.site.urls),
]

Operation results and error reporting contents from django.conf.urls import include, url

ImportError: cannot import name 'url' from 'django.conf.urls' (D:\Anaconda3\lib\site-packages\django\conf\urls_init_.py)

My solution ideas and tried methods I tried to put url Replace with re_path perhaps path

, The result is the same . My version is Django4.0, According to the online statement, it can't be replaced

What I want to achieve System check identified no issues (0 silenced).

August 09, 2021 - 15:46:28
Django version 3.1.13, using settings 'mysite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved