OSError:[Errno 8]执行格式错误:尝试在python中使用硒打开Firefox时出现'geckodriver'

OSError:[Errno 8]执行格式错误:尝试在python中使用硒打开Firefox时出现'geckodriver'

问题描述:

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'

我的geckodriver路径是:

my path to geckodriver is:

/usr/bin/geckodriver

硒在其中:

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

提前谢谢!

您最有可能安装了geckodriver版本,该版本适用于不同的OS/平台!从 https://github.com/mozilla/geckodriver/releases 获取正确的版本,并替换你有一个.

You have most probably installed a version of geckodriver that is meant for a different OS/platform! get the correct version from https://github.com/mozilla/geckodriver/releases and replace the one you have.