在尝试运行时,我会得到这个导入错误。
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)elasticsearch版本: 7.13.3弹性搜索-dsl版本: 7.4.0
我试过:
from collections.abc import Mapping似乎无法用谷歌找到答案
发布于 2022-05-13 00:55:58
您一定安装了elasticsearch_dsl。安装elasticsearch-dsl。
试着做:
pip uninstall elasticsearch_dsl
pip install elasticsearch-dsl 这应该能行。
https://stackoverflow.com/questions/71798291
复制相似问题