gpt4 book ai didi

Python - Ubuntu OS 中的 Selenium 错误 : [Errno 20] Not a directory

转载 作者:IT老高 更新时间:2023-10-28 21:08:15 25 4
gpt4 key购买 nike

在 Ubuntu 中安装 Selenium 并将 geckodriver 添加到路径后,运行时出现此错误

from selenium import webdriver

driver = webdriver.Firefox()

错误:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/firefox/webdriver.py", line 135, in __init__
self.service.start()
File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/common/service.py", line 64, in start
stdout=self.log_file, stderr=self.log_file)
File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child
raise child_exception
OSError: [Errno 20] Not a directory

发生了什么事?

编辑:使用 chromedriver 而不是 geckodriver 解决。

最佳答案

遇到了同样的问题。有两种方法可以帮我解决这个问题:

在 webdriver 中添加 executable_path 参数:

driver = webdriver.Firefox(executable_path='/path/to/geckodriver')

第二种方法是使用导出添加包含 geckodriver 的文件夹(仅文件夹,而不是 geckodriver):

$ export PATH=$PATH:/path/to/

关于Python - Ubuntu OS 中的 Selenium 错误 : [Errno 20] Not a directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40073548/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com