google chromeDriver 地址

#chrome driver 下载地址

https://getwebdriver.com/chromedriver

#chrome brower下载地址

https://googlechromelabs.github.io/chrome-for-testing/

centos 安装的dockerFile的部分命令:

#安装browser

wget https://dl.google.com/linux/chrome/rpm/stable/x86_64/google-chrome-stable-124.0.6367.91-1.x86_64.rpm &&

yum localinstall -y ./google-chrome-stable-124.0.6367.91-1.x86_64.rpm &&

rm -f ./google-chrome-stable-124.0.6367.91-1.x86_64.rpm &&

#安装chrome driver

wget https://storage.googleapis.com/chrome-for-testing-public/124.0.6367.91/linux64/chromedriver-linux64.zip &&

unzip chromedriver-linux64.zip &&

mv -f chromedriver-linux64 /usr/bin/ &&

chmod +x /usr/bin/chromedriver-linux64/ &&

cp /usr/bin/chromedriver-linux64/chromedriver /usr/bin/ && ]

#安装openssl 1.1.1K

wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz &&

tar zxvf openssl-1.1.1k.tar.gz &&

cd openssl-1.1.1k/ &&

./config --prefix=/usr/local/openssl --openssldir=/usr/local/openssl shared zlib &&

make &&

make install &&

ln -sf /usr/local/openssl/bin/openssl /usr/bin/openssl &&

echo "/usr/local/openssl/lib" > /etc/ld.so.conf.d/openssl.conf &&

ldconfig

相关推荐
TF男孩9 小时前
ARQ:一款低成本的消息队列,实现每秒万级吞吐
后端·python·消息队列
该用户已不存在14 小时前
Mojo vs Python vs Rust: 2025年搞AI,该学哪个?
后端·python·rust
站大爷IP16 小时前
Java调用Python的5种实用方案:从简单到进阶的全场景解析
python
用户83562907805121 小时前
从手动编辑到代码生成:Python 助你高效创建 Word 文档
后端·python
侃侃_天下21 小时前
最终的信号类
开发语言·c++·算法
c8i21 小时前
python中类的基本结构、特殊属性于MRO理解
python
echoarts1 天前
Rayon Rust中的数据并行库入门教程
开发语言·其他·算法·rust
liwulin05061 天前
【ESP32-CAM】HELLO WORLD
python
Aomnitrix1 天前
知识管理新范式——cpolar+Wiki.js打造企业级分布式知识库
开发语言·javascript·分布式
Doris_20231 天前
Python条件判断语句 if、elif 、else
前端·后端·python