ElasticSearch ImportError: cannot import name 'Mapping' from 'elasticsearch.compat'
ElasticSearch ImportError: cannot import name 'Mapping' from 'elasticsearch.compat'
我在尝试 运行
时遇到此导入错误
from elasticsearch_dsl import Search, A
完整追溯
ImportError: cannot import name 'Mapping' from 'elasticsearch.compat' (C:\Users\SANA\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\elasticsearch\compat.py)
弹性搜索版本:7.13.3
elasticsearch-dsl 版本:7.4.0
我试过:
from collections.abc import Mapping
我似乎无法google找到答案
您必须安装 elasticsearch_dsl。安装 elasticsearch-dsl.
尝试做:
pip uninstall elasticsearch_dsl
pip install elasticsearch-dsl
这应该有效。
我在尝试 运行
时遇到此导入错误from elasticsearch_dsl import Search, A
完整追溯
ImportError: cannot import name 'Mapping' from 'elasticsearch.compat' (C:\Users\SANA\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.7_qbz5n2kfra8p0\LocalCache\local-packages\Python37\site-packages\elasticsearch\compat.py)
弹性搜索版本:7.13.3 elasticsearch-dsl 版本:7.4.0
我试过:
from collections.abc import Mapping
我似乎无法google找到答案
您必须安装 elasticsearch_dsl。安装 elasticsearch-dsl.
尝试做:
pip uninstall elasticsearch_dsl
pip install elasticsearch-dsl
这应该有效。