我是编码新手,只是不明白这个错误代码的含义

我最近才开始使用 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 specified


During 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

有人可以帮忙吗?



繁花如伊
浏览 234回答 3
3回答

明月笑刀无情

您的系统找不到 chromerdriver 可执行文件。当您使用 Windows 时,我建议您使用可执行文件的完整路径定义:driver&nbsp;=&nbsp;webdriver.Chrome(executable_path="C:\Users\Liam&nbsp;McAuley\path\to\actual\chromedriver.exe")或者,您可以通过在命令提示符中键入此命令来将 chromedriver.exe 添加到您的路径(确保您以管理员身份运行!)&nbsp;setx&nbsp;CHROMEDRIVER=C:\Users\Liam&nbsp;McAuley\path\to\actual\chromedriver.exe

慕哥6287543

从阅读跟踪来看,似乎有两件事出了问题。第一个是似乎 python 找不到您指定的文件,所以也许检查您的路径。第二个是你的 PATH 上可能没有 chromedriver。如果您使用的是 Windows,则可以通过环境变量选项卡将其添加到路径中。您也可以按照此处找到的步骤进行操作

偶然的你

Selenium 尝试访问 chromdriver,它是一个用于执行&nbsp;&nbsp;&nbsp;driver&nbsp;=&nbsp;webdriver.Chrome('chromedriver.exe')为了使用 chromedriver,它必须在路径上。您可以在此处获取 chromedriver&nbsp;。至于如何添加东西到路径,你可以暂时使用SETX&nbsp;&nbsp;&nbsp;setx&nbsp;CHROMEDRIVER=path/to/chromedriver.exe或者您可以为驱动程序创建一个文件夹,然后按照此处的这些说明将该文件夹永久添加到路径
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python