執行命令:
python3 manage.py rebuild_index
報如下錯誤:
......(前面一堆報錯)
file "/home/python/django/test6/test6/urls.py", line
20, in
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
include() instead.
可以看到以上報錯中第2行**:
url(r'^admin/', include(admin.site.urls)),
網上查詢後,將專案路徑下的urls.py檔案的這一行**改為:
url(r'^admin/', admin.site.urls),
再次執行python3 manage.py rebuild_index,不再報錯.
es 建立索引報錯 ES搜尋引擎基本操作
一.建立索引庫 執行 結果 我已經建立過了,重複執行會報錯 二.建立索引 1.新增索引 2.新增索引 動態新增新列 3.新增指定id的索引 根據id可以直接修改一前的索引 三.搜尋 1.根據id搜尋 2.根據字段搜尋 每乙個 source對應一條索引 3.多條件組合搜尋 query multi ma...
搜尋引擎索引之如何建立索引
本文節選自 這就是搜尋引擎 核心技術詳解 第三章 3.4建立索引 正如前述章節所述,索引結構如果建立好了,可以增加搜尋的速度,那麼給定乙個文件集合,索引是如何建立起來的呢?建立索引的方式有很多種,本節敘述比較實用的三種建立索引的方法。3.4.1兩遍文件遍曆法 2 pass in memory inv...
python建立django專案報錯
python37 django3.0.7configured.you must either define the environment variable django settings module or call settings.configure before accessing sett...