1. 程式人生 > >Linux - 運行 django 時 :django.db.utils.Notsupportederror: urls not supported

Linux - 運行 django 時 :django.db.utils.Notsupportederror: urls not supported

問題 png ots lin nds src pack utils python

運行 django 是異常:django.db.utils.Notsupportederror: urls not supported

技術分享圖片

原因:sqlite3版本3.7的問題

解決:直接改源碼

1. pip3 show django 找到自己安裝的 django 文件路徑

2. /home/python/lib/python3.7/site-packages/django/db/backends/sqlite3/base.py 找到這個路徑,並編輯 base.py 文件

技術分享圖片

3. 修改代碼 - 修改為 False

技術分享圖片

4. 保存退出,重新啟動 python3 manage.py runserver

Linux - 運行 django 時 :django.db.utils.Notsupportederror: urls not supported