我最近才开始使用 Python 3 进行编码。我不知道如何表达我要问的问题,因为我不理解返回的这些错误的任何部分。 Traceback (most recent call last): File "C:\Users\Liam McAuley\AppData\Local\Programs\Python\Python38\lib\site-packages\selenium\webdriver\common\service.py", line 72, in start self.process = subprocess.Popen(cmd, env=self.env, File "C:\Users\Liam McAuley\AppData\Local\Programs\Python\Python38\lib\subprocess.py", line 854, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "C:\Users\Liam McAuley\AppData\Local\Programs\Python\Python38\lib\subprocess.py", line 1307, in _execute_child hp, ht, pid, tid = _winapi.CreateProcess(executable, args,FileNotFoundError: [WinError 2] The system cannot find the file specifiedDuring handling of the above exception, another exception occurred:Traceback (most recent call last): File "C:\Users\Liam McAuley\AppData\Local\Programs\Python\Python38\shrek.py", line 13, in <module> driver = webdriver.Chrome('chromedriver.exe') File "C:\Users\Liam McAuley\AppData\Local\Programs\Python\Python38\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 73, in __init__ self.service.start() File "C:\Users\Liam McAuley\AppData\Local\Programs\Python\Python38\lib\site-packages\selenium\webdriver\common\service.py", line 81, in start raise WebDriverException(selenium.common.exceptions.WebDriverException: Message: 'chromedriver.exe' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home有人可以帮忙吗?
3 回答
明月笑刀无情
TA贡献1828条经验 获得超4个赞
您的系统找不到 chromerdriver 可执行文件。当您使用 Windows 时,我建议您使用可执行文件的完整路径定义:
driver = webdriver.Chrome(executable_path="C:\Users\Liam McAuley\path\to\actual\chromedriver.exe")
或者,您可以通过在命令提示符中键入此命令来将 chromedriver.exe 添加到您的路径(确保您以管理员身份运行!)
setx CHROMEDRIVER=C:\Users\Liam McAuley\path\to\actual\chromedriver.exe
慕哥6287543
TA贡献1831条经验 获得超10个赞
从阅读跟踪来看,似乎有两件事出了问题。第一个是似乎 python 找不到您指定的文件,所以也许检查您的路径。第二个是你的 PATH 上可能没有 chromedriver。如果您使用的是 Windows,则可以通过环境变量选项卡将其添加到路径中。您也可以按照此处找到的步骤进行操作
偶然的你
TA贡献1841条经验 获得超3个赞
Selenium 尝试访问 chromdriver,它是一个用于执行
driver = webdriver.Chrome('chromedriver.exe')
为了使用 chromedriver,它必须在路径上。您可以在此处获取 chromedriver 。至于如何添加东西到路径,你可以暂时使用SETX
setx CHROMEDRIVER=path/to/chromedriver.exe
或者您可以为驱动程序创建一个文件夹,然后按照此处的这些说明将该文件夹永久添加到路径
添加回答
举报
0/150
提交
取消