ModuleNotFoundError: No module named 'undetected_chromedriver.v2'
4条回答 默认 最新
weixin_46604801 2023-07-16 16:38关注其他回答都是什么鬼,没翻文档吗
原文:
v2 has become the main module, so no need for references to v2 anymore. this mean you can now simply use:import undetected_chromedriver as uc
driver = uc.Chrome()
driver.get('https://nowsecure.nl')
for backwards compatibility, v2 is not removed, but aliassed to the main module.用import undetected-chromedriver as uc 就行, undetected-chromedriver.v2 已经被合并了
评论 打赏 举报解决 1无用