python - 操作系统错误 : [Errno 8] Exec format error: 'chromedriver' using Chromedriver on Ubuntu server

标签 python selenium ubuntu amazon-ec2 selenium-chromedriver

我正在尝试将 Chromedriver 与 Ubuntu(AWS 实例)一起使用。我已经让 Chromedriver 在本地实例中正常工作,但在远程实例中却有很多很多问题。

我正在使用以下代码:

options = Options()
options.add_argument('--no-sandbox')
options.add_argument('--headless')
options.add_argument('--disable-dev-shm-usage')
options.add_argument("--remote-debugging-port=9222")

driver = webdriver.Chrome(executable_path='/usr/bin/chromedriver', chrome_options=options)

但是,我不断收到此错误:

    Traceback (most recent call last):
  File "test.py", line 39, in <module>
    driver = webdriver.Chrome()
  File "/home/ubuntu/.local/lib/python3.6/site-packages/selenium/webdriver/chrome/webdriver.py", line 73, in __init__
    self.service.start()
  File "/home/ubuntu/.local/lib/python3.6/site-packages/selenium/webdriver/common/service.py", line 76, in start
    stdin=PIPE)
  File "/usr/lib/python3.6/subprocess.py", line 729, in __init__
    restore_signals, start_new_session)
  File "/usr/lib/python3.6/subprocess.py", line 1364, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
OSError: [Errno 8] Exec format error: 'chromedriver'

我相信我使用的是 Selenium、Chrome 和 Chromedriver 的最新版本。

Chrome 版本为:Version 78.0.3904.70 (Official Build) (64-bit)

Selenium :

ubuntu@ip-172-31-31-200:/usr/bin$ pip3 show selenium
Name: selenium
Version: 3.141.0
Summary: Python bindings for Selenium
Home-page: https://github.com/SeleniumHQ/selenium/
Author: UNKNOWN
Author-email: UNKNOWN
License: Apache 2.0
Location: /home/ubuntu/.local/lib/python3.6/site-packages
Requires: urllib3

最后,对于 Chromedriver,我几乎可以肯定我在这里下载了最新版本:https://chromedriver.storage.googleapis.com/index.html?path=78.0.3904.70/ .它是 mac_64 版本(我在 Mac 上使用 Ubuntu)。然后我将 chromedriver 放在 /usr/bin 中,因为我读到这是常见的做法。

我不知道为什么这不起作用。我能想到的几个选项:

  1. 某种访问问题?我是命令行和 ubuntu 的初学者 - 我应该以“root”用户身份运行它吗?

  2. Chromedriver 和 Chrome 版本不匹配?有没有办法确定我有哪个 chromedriver 版本?

  3. 我看到 Chromedriver 和 Selenium 位于不同的位置。 Selenium 位于:Location:/home/ubuntu/.local/lib/python3.6/site-packages 我已将 chromedriver 移至:/usr/bin 。这会导致问题吗?

最佳答案

Ubuntu 服务器 18.04 LTS(64 位 Arm):

  1. 下载 Chrome:wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
  2. 安装 Chrome:sudo dpkg -i google-chrome-stable_current_amd64.deb
  3. 如果你会得到错误运行:sudo apt-get -f install
  4. 检查 Chrome:google-chrome --version
  5. 下载适用于 Linux 的 chromedriver:wget https://chromedriver.storage.googleapis.com/78.0.3904.70/chromedriver_linux64.zip
  6. 解压chromedriver,如果需要安装解压sudo apt install unzip:unzip chromedriver_linux64.zip
  7. 将 chromedriver 移动到/usr/bin:sudo mv chromedriver/usr/bin/chromedriver
  8. 检查chromedriver,运行命令:chromedriver
  9. 安装 Java:sudo apt install default-jre
  10. 安装 Selenium:sudo pip3 install selenium

创建测试文件,nano test.py,内容如下。按 CTRL+X 退出,按 Y 保存。执行你的脚本 - python3 test.py

#!/usr/bin/python3

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

options = Options()
options.add_argument('--no-sandbox')
options.add_argument('--headless')
options.add_argument('--disable-dev-shm-usage')
options.add_argument("--remote-debugging-port=9222")

try:
  driver = webdriver.Chrome(chrome_options=options)
  driver.get("https://www.google.com")
  s = driver.find_element_by_name("q")
  assert s.is_displayed() is True
  print("ok")
except Exception as ex:
  print(ex)

driver.quit()

使用 Docker 和 selenium/standalone-chrome-debug 的示例:

  1. 安装docker,安装步骤为here
  2. 启动容器,使用 sudo docker run -d -p 4444:4444 -v/dev/shm:/dev/shm selenium/standalone-chrome:3.141.59-xenon 命令,不同的选项是 here
  3. 在 AWS 中打开您的实例的安全组并添加 TCP 规则以便能够连接。您只能为 Selenium 添加您自己的 IP 和端口 4444
  4. 从本地运行测试
    options = webdriver.ChromeOptions()
    options.add_argument('--no-sandbox')
    options.add_argument('--headless')
    options.add_argument('--disable-dev-shm-usage')
    options.add_argument("--remote-debugging-port=9222")
    driver = webdriver.Remote(command_executor="http://your_instance_ip:4444/wd/hub",
                              desired_capabilities=options.to_capabilities())

关于python - 操作系统错误 : [Errno 8] Exec format error: 'chromedriver' using Chromedriver on Ubuntu server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58585037/

相关文章:

ruby - 如何在 Ubuntu 中安装最新版本的 ruby​​?

javascript - Django 和 ReactJS 没有呈现模板

python - Cloud ML Engine 在线预测性能

selenium - 获取以下代码的 "element not interactable"

selenium - 带 Protractor 的 browserstack 报告

python - 使用 Python 添加/删除 Ubuntu 登录脚本项

python - 如何根据行的内容分割pyspark数据帧

python - 使用 python uuid.uuid4 生成的 key 进行电子邮件验证是一种好方法吗?

java - 元素不再附加到 DOM,Selenium WebDriver

django - 在 ubuntu apache2 上部署 django 应用程序