https://blog.csdn.net/huilan_same/article/details/52615123,灰藍大神的總結,可直接下載
下載chrome瀏覽器,檢視版本
http://blog.csdn.net/huilan_same/article/details/51896672網頁中找與版本對應的chromedriver
http://chromedriver.storage.googleapis.com/index.html中下載chromedriver適應的系統
下載後移動到python執行檔案的目錄處mac(/usr/local/bin/下)
mac許可權設定不能直接拉進去,終端執行命令sudo cp -r 將下載好的檔案直接拖進去就能生成目錄 /usr/local/bin/
python中輸入執行
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://www.baidu.com")
執行成功後,驅動安裝成功