Ubuntu18.4安装Chrome、chromedriver、selenium

有任何问题请留言!!!

  • 安装Google Chrome
    1、下载Google Chrome最新版
    2、开始安装:
sudo apt install libappindicator1 libindicator7
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt -f install
  • 安装chromedriver
    需要安装chrome对应版本的chromedrive
    Ubuntu18.4安装Chrome、chromedriver、selenium_第1张图片
    点击显示细节,查看chrome版本
    Ubuntu18.4安装Chrome、chromedriver、selenium_第2张图片
    Ubuntu18.4安装Chrome、chromedriver、selenium_第3张图片
    查看对应版本的chromedriver

在这里插入图片描述googledriver镜像

下载安装对应版本的googledriver

wget -N http://chromedriver.storage.googleapis.com/76.0.3809.12/chromedriver_linux64.zip 
unzip chromedriver_linux64.zip
sudo mv -f chromedriver /usr/local/share/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver

安装包依赖

sudo apt -y install libgconf2-4
  • 安装selenium
pip3 install selenium

你可能感兴趣的:(Ubuntu18.4安装Chrome、chromedriver、selenium)