Skip to content

Instantly share code, notes, and snippets.

@3lackRos3
Created March 16, 2016 11:25
Show Gist options
  • Save 3lackRos3/4a95962005eb829a2a3e to your computer and use it in GitHub Desktop.
Save 3lackRos3/4a95962005eb829a2a3e to your computer and use it in GitHub Desktop.

Chrome Driver Install for Selenium

To Download the chrome driver for 64 bit OS

wget -N http://chromedriver.storage.googleapis.com/2.21/chromedriver_linux64.zip -P ~/Downloads

Unzip the file

unzip ~/Downloads/chromedriver_linux64.zip -d ~/Downloads

Make the downloaded file executable and move it to /usr/local/share/

chmod +x ~/Downloads/chromedriver
sudo mv -f ~/Downloads/chromedriver /usr/local/share/chromedriver

Create Symlink

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