Skip to content

Instantly share code, notes, and snippets.

@CyberLight
Created October 30, 2014 05:23
Show Gist options
  • Save CyberLight/22c28cc74ba9b3e814da to your computer and use it in GitHub Desktop.
Save CyberLight/22c28cc74ba9b3e814da to your computer and use it in GitHub Desktop.
best easy install chromedriver on mac
#For mac
brew install unzip
wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/2.12/chromedriver_mac32.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