linux 上部署 selenium

發表於2020-05-08

linux 上部署 selenium

1、安裝 chrome

用下面的命令安裝 Google Chrome
yum -y install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
也可以先下載至本地,然後安裝

wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
yum install ./google-chrome-stable_current_x86_64.rpm

安裝必要的庫
yum install mesa-libOSMesa-devel gnu-free-sans-fonts wqy-zenhei-fonts

檢視谷歌 chrome 版本
google-chrome --version

2、安裝 chromedriver(末尾附 chrome 和 chromedriver 的對應版本)

chrome 官網
wget https://chromedriver.storage.googleapis.com/2.38/chromedriver_linux64.zip
淘寶源(推薦)
wget http://npm.taobao.org/mirrors/chromedriver/2.41/chromedriver_linux64.zip

將下載的檔案解壓,放在如下位置
unzip -d /usr/bin chromedriver_linux64.zip

給予執行許可權
chmod +x /usr/bin/chromedriver

3、執行程式碼,檢視是否成功(python 下)

from selenium import webdriver
driver = webdriver.Chrome()

相關文章