配置安装源:
cd /etc/yum.repos.d
vi 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
执行安装:
yum -y install google-chrome-stable --nogpgcheck
安装过程中出现如下问题:
http://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/repomd.xml: [Errno 14] curl#7 - "Failed to connect to 2404:6800:4005:80e::200e: Network is unreachable"
解决方法,增加 dns:
vi /etc/resolv.conf
nameserver 223.5.5.5
nameserver 223.6.6.6
进入安装后的路径:
cd /opt/google/chrome
查看版本:
google-chrome --version
安装驱动(对应版本):
下载网址:http://npm.taobao.org/mirrors/chromedriver/
解压到:/usr/bin/
unzip chromedriver_linux64.zip -d /usr/bin/
作者:qq494686707