Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenMcH/726bbf57c3feb664a604e3ed479e34c2 to your computer and use it in GitHub Desktop.
Save BenMcH/726bbf57c3feb664a604e3ed479e34c2 to your computer and use it in GitHub Desktop.

ChromeDriver Linux Installation

  1. wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
  2. $ sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list
  3. sudo apt update
  4. sudo apt install unzip google-chrome-stable
  5. Navigate to the ChromeDriver page and choose the latest version (2.37 at the time of writing this)
  6. Copy the link for the linux download
  7. wget http://chromedriver.storage.googleapis.com/2.37/chromedriver_linux64.zip
  8. unzip chromedriver_linux64.zip
  9. sudo mv -f ~/Downloads/chromedriver /usr/local/share/
  10. sudo chmod +x /usr/local/share/chromedriver
  11. sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
  12. sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment