Last active
May 17, 2021 11:45
-
-
Save luanbe/ff14407bca47e4f4ce41aaa2278ef625 to your computer and use it in GitHub Desktop.
Install Chrome, Chrome Driver and Python in Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # This file edited from https://gist.github.com/ziadoz/3e8ab7e944d02fe872c3454d17af31a5 | |
| # Test on Ubuntu 18.04.5 LTS | |
| # Versions | |
| CHROME_DRIVER_VERSION=`curl -sS https://chromedriver.storage.googleapis.com/LATEST_RELEASE` | |
| SELENIUM_STANDALONE_VERSION=3.9.1 | |
| SELENIUM_SUBDIR=$(echo "$SELENIUM_STANDALONE_VERSION" | cut -d"." -f-2) | |
| # Remove existing downloads and binaries so we can start from scratch. | |
| sudo apt-get remove google-chrome-stable | |
| rm ~/selenium-server-standalone-*.jar | |
| rm ~/chromedriver_linux64.zip | |
| sudo rm /usr/local/bin/chromedriver | |
| sudo rm /usr/local/bin/selenium-server-standalone.jar | |
| # Install dependencies. | |
| sudo apt-get update | |
| sudo apt-get install -y unzip openjdk-8-jre-headless xvfb libxi6 libgconf-2-4 git-all python3 python3-dev python3-pip python3-venv libxml2-dev libxslt1-dev zlib1g-dev libffi-dev libssl-dev | |
| # Install Chrome. | |
| sudo curl -sS -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add | |
| sudo echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list | |
| sudo apt-get -y update | |
| sudo apt-get -y install google-chrome-stable | |
| # Install ChromeDriver. | |
| wget -N https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip -P ~/ | |
| unzip ~/chromedriver_linux64.zip -d ~/ | |
| rm ~/chromedriver_linux64.zip | |
| sudo mv -f ~/chromedriver /usr/local/bin/chromedriver | |
| sudo chown root:root /usr/local/bin/chromedriver | |
| sudo chmod 0755 /usr/local/bin/chromedriver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment