我试图导入 undetected_chromedriver
import undetected-chromedriver.v2 as uc
driver = uc.Chrome()
resp = driver.get("https://google.com")
运行上面的代码会引发以下错误。
File "C:\Users\Narmu\Desktop\Python_Workspace_Master\venv\lib\site-packages\undetected_chromedriver\cdp.py"
from collections import Mapping, Sequence
ImportError: cannot import name 'Mapping' from 'collections'
我搜索关于集合包,但它在包列表中不可用
我在 VS Code ImportError: cannot import name 'Mapping' from 'collections' 中找到了一个建议?
但是collections.abc在包列表中也没有。
我使用 python 版本 3.10。
为了使这项工作,请建议我。