Last active
February 16, 2020 17:04
-
-
Save TiborUdvari/400b19660ed4b0d2ddf64df7c44c9175 to your computer and use it in GitHub Desktop.
Install Selenium and ChromeDriver 2.43 on MacOS from terminal
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
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