配置yum源
- 在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo
vim /etc/yum.repos.d/google-chrome.repo
- 添加如下内容
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
安装google chrome浏览器及chromedriver
- Google官方源安装:
yum makecache
yum -y install google-chrome-stable
- Google官方源可能在中国无法使用,导致安装失败或者在国内无法更新,可以添加以下参数来安装:
yum -y install google-chrome-stable --nogpgcheck
- 检查chrome版本
google-chrome --version
- 下载对应版本的的chromedriver
- 检查chromedriver版本
chromedriver --version
标签:Google,CentOS,Chrome,chromedriver,chrome,google,yum,安装
From: https://www.cnblogs.com/wicktu/p/18263093