gpt4 book ai didi

python - Docker 容器中的 Selenium 找不到 chromedriver

转载 作者:行者123 更新时间:2023-12-05 01:29:54 25 4
gpt4 key购买 nike

我需要将我的 Flask 小应用程序放入 Docker 容器中,然后检查我公司的客户安装了哪种类型的 Google 标签。为此,我需要 selenium-wire 。你提供一个网站,你会得到一个 json 返回告诉你安装了哪些标签(有点像 http://gachecker.com/ )。现在它与 Flask 应用程序一起工作得很好。当我尝试将其放入 Docker 时出现问题,这是我的 docker 脚本:

FROM python:3.9 WORKDIR /bziiit_checker_app

RUN pip install flask flask_restful requests BeautifulSoup4 selenium-wire undetected-chromedriver chromedriver-py

COPY ./app ./app

CMD ["python", "./app/main.py"]

一旦它在 Docker 中并尝试运行它,我就会收到该消息

"selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH"

当 chromedriver.exe 文件不在工作目录中时,这是一个常见问题。但它是。我在创建虚拟环境时是否需要设置 PATH,如果需要我该怎么做?同样,我擅长人工智能,但不擅长应用程序开发。

我正在使用 Python 3.9,并在 Windows 10、Visual Studio Code 和 Flask 上运行

谢谢

最佳答案

经过几天的痛苦和痛苦,我终于解决了这个问题,所以这是我创建的 Docker 文件,让 chromedriver 在 Docker 容器中工作。

这适用于使用 VS 代码的 Windows 10

FROM python:3.8

# Adding trusting keys to apt for repositories
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -

# Adding Google Chrome to the repositories
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'

# Updating apt to see and install Google Chrome
RUN apt-get -y update

# Magic happens
RUN apt-get install -y google-chrome-stable

# Installing Unzip
RUN apt-get install -yqq unzip

# Download the Chrome Driver
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
RUN apt-get -y update
RUN apt-get install -y google-chrome-stable

# install chromedriver
RUN apt-get install -yqq unzip
RUN wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`/chromedriver_linux64.zip
RUN unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/

# Set display port as an environment variable
ENV DISPLAY=:99

COPY ./app ./app
WORKDIR /app

RUN pip install --upgrade pip

RUN pip install -r requirements.txt

CMD ["python", "./main.py"]

然后,在您的脚本中,将这些参数添加到 Chromedriver 的选项中,否则它会给您一条错误消息,告诉您“Chromedriver 已异常退出”

option = webdriver.ChromeOptions()

option.add_argument("--disable-gpu")
option.add_argument("--disable-extensions")
option.add_argument("--disable-infobars")
option.add_argument("--start-maximized")
option.add_argument("--disable-notifications")
option.add_argument('--headless')
option.add_argument('--no-sandbox')
option.add_argument('--disable-dev-shm-usage')

我希望这能让其他人不再为这个问题让我头疼

关于python - Docker 容器中的 Selenium 找不到 chromedriver,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67488276/

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