在centos中安装chrome,为selenium做准备

一、安装chrome浏览器

1.系统需求

CentOS 7 系统必须是 64 位系统,Chrome 没有 32 位系统的软件包。

2.在 CentOS 7 系统中添加谷歌官方 Yum 软件源

在 CentOS 7 系统下的 /etc/yum.repos.d/ 文件夹中创建 google-chrome.repo 文件:

sudo vi /etc/yum.repos.d/google-chrome.repo

添加如下 Yum 软件源信息:

[google-chrome]

name=google-chrome

baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch

enabled=1

gpgcheck=0

gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

3.查看谷歌 Chrome 浏览器的软件包信息

sudo yum info google-chrome-stable

系统可能会显示如下信息:

可安装的软件包

名称 :google-chrome-stable

架构 :x86_64

版本 :67.0.3396.87

发布 :1

大小 :50 M

源 :google-chrome/x86_64

简介 : Google Chrome

网址 :https://chrome.google.com/

协议 : Multiple, see https://chrome.google.com/

描述 : The web browser from Google

:

: Google Chrome is a browser that combines a minimal design with

: sophisticated technology to make the web faster, safer, and easier.

从显示信息上可以看出当前的 Chrome 版本是 67。

4.在 CentOS 7 系统中安装 Chrome 浏览器稳定版

sudo yum install google-chrome-stable

5.检查版本

[root@localhost ~]# google-chrome-stable --version

Google Chrome 109.0.5414.119

二、安装驱动

知道了chrome的版本后,需要再安装对应版本的驱动:

1、方式一:

在这里查看:CNPM Binaries Mirror 找到与上面浏览器一样的版本下载.

2、方式二:

有时可能找不到这么高的版本,可以使用稍低一点的。

3、方式三:

稍低版本不行,那你可以访问 Chrome for Testing availability 这个地址去下载更新chromedriver。

4、下载

(1)在windows浏览器找到对应系统的包之后,直接下载。然后通过,rz命令再上传到centos上。

(2)使用复制下载链接,在centos的目录中,自己找个想把包放到的目录。使用下面命令:

wget http://xxxxx

5、下载完成后,要解压一下:

unzip xxxx.zip

没有unzip命令的自己安装一下

6、把解压中的chromedriver移动到/usr/bin下

mv chromedriver /usr/bin

7、进入到/usr/bin中,把chromedriver设置为可执行文件

复制代码
chmod u+x chromedriver
相关推荐
筱源源15 分钟前
Kafka-linux环境部署
linux·kafka
算法与编程之美1 小时前
文件的写入与读取
linux·运维·服务器
xianwu5431 小时前
反向代理模块
linux·开发语言·网络·git
Amelio_Ming1 小时前
Permissions 0755 for ‘/etc/ssh/ssh_host_rsa_key‘ are too open.问题解决
linux·运维·ssh
Ven%2 小时前
centos查看硬盘资源使用情况命令大全
linux·运维·centos
TeYiToKu3 小时前
笔记整理—linux驱动开发部分(9)framebuffer驱动框架
linux·c语言·arm开发·驱动开发·笔记·嵌入式硬件·arm
dsywws3 小时前
Linux学习笔记之时间日期和查找和解压缩指令
linux·笔记·学习
yeyuningzi3 小时前
Debian 12环境里部署nginx步骤记录
linux·运维·服务器
上辈子杀猪这辈子学IT4 小时前
【Zookeeper集群搭建】安装zookeeper、zookeeper集群配置、zookeeper启动与关闭、zookeeper的shell命令操作
linux·hadoop·zookeeper·centos·debian
minihuabei4 小时前
linux centos 安装redis
linux·redis·centos