Skip to content

Instantly share code, notes, and snippets.

@TiborUdvari
Last active February 16, 2020 17:04
Show Gist options
  • Save TiborUdvari/400b19660ed4b0d2ddf64df7c44c9175 to your computer and use it in GitHub Desktop.
Save TiborUdvari/400b19660ed4b0d2ddf64df7c44c9175 to your computer and use it in GitHub Desktop.
Install Selenium and ChromeDriver 2.43 on MacOS from terminal
pip install selenium
wget https://chromedriver.storage.googleapis.com/2.43/chromedriver_mac64.zip
unzip chromedriver_mac64.zip
chmod +x chromedriver
mkdir -p ~/bin
mv chromedriver ~/bin/chromedriver
rm chromedriver_mac64.zip
echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
#zsh version
#echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.zshrc
#source ~/.zshrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment