CentOS 安装 python3和 chrome 及 chromedriver
安装 Python3
1 | yum install epel-release |
安装 pip3
1 | curl -O https://bootstrap.pypa.io/get-pip.py |
安装 chrome
https://intoli.com/blog/installing-google-chrome-on-centos/
RHEL/CentOS 7.X 下安装方法
先查看你的系统版本cat /etc/redhat-release
编辑文件 /etc/yum.repos.d/google-chrome.repo
vi /etc/yum.repos.d/google-chrome.repo
里面的内容如下:
1 | [google-chrome] |
完成安装
1 | yum install google-chrome-stable |
测试
1 | google-chrome-stable --no-sandbox --headless --disable-gpu --screenshot https://www.yahoo.com/ |
安装 chromedriver
根据你的版本来安装
google-chrome --version
1 | http://chromedriver.chromium /downloads |
下载相应的版本后,解压,把 chromedriver 复制到/usr/bin/
1 | cp chromedriver /usr/bin/ |