您好,登錄后才能下訂單哦!
Django中創建引擎索引出現報錯如何解決,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
具體報錯如下:
執行命令:
python3 manage.py rebuild_index
報如下錯誤:
......(前面一堆報錯) File "/home/python/Django/test6/test6/urls.py", line 20, in <module> url(r'^admin/', include(admin.site.urls)), File "/home/python/.virtualenvs/py_django/lib/python3.6/site-packages/django/urls/conf.py", line 27, in include 'provide the namespace argument to include() instead.' % len(arg) django.core.exceptions.ImproperlyConfigured: Passing a 3-tuple to include() is not supported. Pass a 2-tuple containing the list of patterns and app_name, and provide the namespace argument to include() instead.
可以看到以上報錯中第2行代碼:
url(r'^admin/', include(admin.site.urls)),
網上查詢后,將項目路徑下的urls.py文件的這一行代碼改為:
url(r'^admin/', admin.site.urls),
再次執行python3 manage.py rebuild_index,不再報錯.
看完上述內容,你們掌握Django中創建引擎索引出現報錯如何解決的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。