Created
January 29, 2022 19:56
-
-
Save sn0rk64/3f6050cc2da7b61707845345a1263f95 to your computer and use it in GitHub Desktop.
Install headless chrome on ubuntu
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
# Uninstall previous chrome | |
sudo apt-get purge chromium-browser | |
# Re-install the new stable chrome headless | |
sudo apt-get update | |
sudo apt-get install -y libappindicator1 fonts-liberation | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i google-chrome*.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment