Skip to content

Instantly share code, notes, and snippets.

@CyberLight
Last active August 29, 2015 14:08
Show Gist options
  • Save CyberLight/b38a2a078b9235455042 to your computer and use it in GitHub Desktop.
Save CyberLight/b38a2a078b9235455042 to your computer and use it in GitHub Desktop.
best easy install chromedriver on linux
#For linux
sudo apt-get install unzip
wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/2.12/chromedriver_linux64.zip && sudo unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/;
sudo chown -R $(whoami):$(groups $(whoami) | cut -d' ' -f1) /usr/local/bin/chromedriver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment