OSError:[Errno 8]尝试在python中使用selenium打开firefox时出现Exec格式错误:“geckodriver”

2024-03-28 16:38:51 发布

您现在位置:Python中文网/ 问答频道 /正文

from selenium import webdriver

browser = webdriver.Firefox(executable_path="/usr/bin/geckodriver")
browser.get('http://www.ubuntu.com/')

整个堆栈跟踪看起来像:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.6/dist-packages/selenium/webdriver/firefox/webdriver.py", line 160, in __init__
self.service.start()
File "/usr/local/lib/python3.6/dist-packages/selenium/webdriver/common/service.py", line 76, in start
stdin=PIPE)
File "/usr/lib/python3.6/subprocess.py", line 709, in __init__
restore_signals, start_new_session)
File "/usr/lib/python3.6/subprocess.py", line 1344, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
OSError: [Errno 8] Exec format error: 'geckodriver'

我去壁虎河的路是:

/usr/bin/geckodriver

硒在:

selenium in /usr/local/lib/python3.6/dist-packages (3.12.0)

提前谢谢!


Tags: inpybrowserbinlibpackagesusrlocal
2条回答

请用geckodriver.exe而不是geckodriver这样的地址:

from selenium import webdriver
browser = webdriver.Firefox(executable_path=r"usr/bin/geckodriver.exe")
browser.get('http://www.ubuntu.com/')

您很可能已经安装了geckodriver的一个版本,它适用于不同的操作系统/平台!从https://github.com/mozilla/geckodriver/releases中获取正确的版本并替换您拥有的版本。

相关问题 更多 >