Last active
August 29, 2015 14:08
-
-
Save CyberLight/b38a2a078b9235455042 to your computer and use it in GitHub Desktop.
best easy install chromedriver on linux
This file contains 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
#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