Last active
January 15, 2022 09:14
-
-
Save jskherman/c6b1d71501bbe966d530d5c6cd203aa8 to your computer and use it in GitHub Desktop.
Install selenium, chromium, and chromedriver on Debian (Jupyter notebook)
This file contains hidden or 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
# 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