Skip to content

Instantly share code, notes, and snippets.

@jskherman
Last active January 15, 2022 09:14
Show Gist options
  • Save jskherman/c6b1d71501bbe966d530d5c6cd203aa8 to your computer and use it in GitHub Desktop.
Save jskherman/c6b1d71501bbe966d530d5c6cd203aa8 to your computer and use it in GitHub Desktop.
Install selenium, chromium, and chromedriver on Debian (Jupyter notebook)
# Used in Deepnote
!pip install selenium
!apt-get update
!apt install -y chromium
!wget https://chromedriver.storage.googleapis.com/2.41/chromedriver_linux64.zip
!unzip chromedriver_linux64.zip
!chmod +x chromedriver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment