91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

web自動化爬蟲selenium centos 無GUI環境配置

發布時間:2020-06-29 19:06:02 來源:網絡 閱讀:649 作者:juggles 欄目:編程語言

基本環境:centos7,python3.x

1.安裝selenium

pip3 install selenium


2.安裝chrome-browser

wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm --no-check-certificate  

yum install ./google-chrome-stable_current_x86_64.rpm


3.下載chromedriver(注意要和chrome-browser版本對應)

web自動化爬蟲selenium centos 無GUI環境配置

由于下載的chrome-browser是70版本的,所以chromedriver 選擇了2.43版本

wget http://chromedriver.storage.googleapis.com/2.43/chromedriver_linux64.zip

解壓此文件,并將文件移動到/usr/bin目錄下

unzip chromedriver_linx64.zip

mv chromedriver /usr/bin/


4.測試selenium是否可用,請執行以下python腳本,如返回html內容,則說明安裝成功

from selenium import webdriver
url='http://bing.com'
option = webdriver.ChromeOptions()
option.add_argument('--no-sandbox')
option.add_argument('--headless')
driver = webdriver.Chrome(chrome_options=option)
driver.get(url)
print(driver.page_source)

注意需要加上,禁止在沙箱中運行

option.add_argument('--no-sandbox')
option.add_argument('--headless')


補充:

安裝firefox支持

yum install firefox

yum install Xvfb

yum install libXfont

pip3 install pyvirtualdisplay

測試腳本

#!/usr/bin/python3
from selenium import webdriver
from pyvirtualdisplay import Display
display = Display(visible=0, size=(800,600))
display.start()
driver = webdriver.Firefox()
driver.get('https://www.baidu.com')
print(driver.title)
driver.quit()
display.stop()


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

封开县| 青川县| 社旗县| 利川市| 江永县| 黔南| 肇源县| 嵊州市| 兴和县| 黄龙县| 梧州市| 吴桥县| 揭东县| 吉木乃县| 柳州市| 元谋县| 呼和浩特市| 华宁县| 五峰| 治县。| 永兴县| 玛纳斯县| 娄烦县| 农安县| 武冈市| 古蔺县| 丘北县| 海淀区| 兰考县| 泰州市| 苍山县| 嘉荫县| 顺义区| 太仓市| 新民市| 岫岩| 勐海县| 资溪县| 玉龙| 金川县| 金华市|