webdriver_manager 找不到这个
时间: 2023-08-04 22:03:27 浏览: 277
Python库 | webdriver_manager-1.5.1-py2.py3-none-any.whl
5星 · 资源好评率100%
"webdriver_manager" 是一个 Python 包,提供了在 Python 中管理 WebDriver 的功能。如果你在使用 Python 中的 Selenium 库时遇到了 "webdriver_manager not found" 的错误,可以通过以下命令安装:
```
pip install webdriver-manager
```
如果你已经安装了 "webdriver_manager" 但仍然无法找到它,可能是因为 Python 的环境变量没有配置正确。你可以检查一下环境变量是否正确配置,或者尝试在代码中显式地指定 "webdriver_manager" 的路径。
阅读全文