码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 安装chrome 和chromedriver

时间:2019-01-26 18:54:50      阅读:674      评论:0      收藏:0      [点我收藏+]

标签:软连接   oca   linu   bin   net   style   sage   www   tor   

1. chromedriver 下载地址:  https://npm.taobao.org/mirrors/chromedriver

在这里找到对应的驱动

2. 安装谷歌浏览器

2.1 安装依赖 

apt-get install libxss1 libappindicator1 libindicator7

2.2 下载Chrome安装包

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

2.3 安装

sudo dpkg -i google-chrome*.deb
sudo apt-get install -f

3. 安装chromedriver 

找到和浏览器对应的驱动

3.1 安装依赖

apt-get install unzip

unzip chromedriver_linux64.zip

mv -f chromedriver /usr/local/share/chromedriver

3.2 安装

#建立软连接
ln
-s /usr/local/share/chromedriver /usr/local/bin/chromedriver

 

4. 测试

from selenium import webdriver
from selenium.webdriver.chrome.options import Options


options = Options()
options.add_argument(--headless)
options.add_argument(--no-sandbox)
options.add_argument(--disable-dev-shm-usage)
driver = webdriver.Chrome(executable_path="/usr/local/bin/chromedriver",
                          chrome_options=options)
print("======")
driver.get(‘https://www.cnblogs.com/myvic/)
print(driver.title)
print(------------)
driver.quit()

 

 

参考资料:

https://www.cnblogs.com/x54256/p/8403864.html

https://blog.csdn.net/qq551551/article/details/78885704/

 

ubuntu 安装chrome 和chromedriver

标签:软连接   oca   linu   bin   net   style   sage   www   tor   

原文地址:https://www.cnblogs.com/myvic/p/10324531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!