多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# centos怎么安装chromedriver驱动? **【在终端安装linux软件的过程中,遇到有提示是否下一步的时候,输入小写的:y,即可继续下一步】** **1、谷歌源录入:** **方法一:会linux命令操作的:** **1、 首先安装google的epel源** vi /etc/yum.repos.d/google.repo **2、插入以下内容** \[google\] name=Google-x86\_64 baseurl=[http://dl.google.com/linux/rpm/stable/x86\_64](http://dl.google.com/linux/rpm/stable/x86_64) enabled=1 gpgcheck=0 gpgkey=[https://dl-ssl.google.com/linux/linux\_signing\_key.pub](https://dl-ssl.google.com/linux/linux_signing_key.pub) **方法二:不会linux命令的:** 1、找到/根目录/etc/yum.repos.d/ ,创建一个空白文件,名字叫:google.repo ![](https://cdn.nlark.com/yuque/0/2021/png/2566134/1636989586902-5f912c3a-85f8-457e-8fc5-ded1722f002e.png) 2、在google.repo文件写入内容(方法一中步骤2的内容),保持文件即可 ![](https://cdn.nlark.com/yuque/0/2021/png/2566134/1636989864868-c7e9df5b-2c47-4323-855b-0af6071cff56.png) **3、保存退出,在终端中安装插件,执行以下命令(遇到卡住不下载的话重启网卡:****nmcli c reload****)** yum update yum install google-chrome-stable ![](https://cdn.nlark.com/yuque/0/2021/png/2566134/1636989953603-8d3598cb-bf78-4fa0-964f-1fa3ed1c3f59.png) **4、查看chrome是否安装成功** google-chrome --version **5、下载驱动:** cd /usr/local/ wget https://chromedriver.storage.googleapis.com/95.0.4638.17/chromedriver\_linux64.zip **6、解压驱动** unzip chromedriver\_linux64.zip **7、更改驱动权限** chmod 755 chromedriver **8、添加软链接** ln -s /usr/local/chromedriver /usr/bin/chromedriver