Skip to content

Instantly share code, notes, and snippets.

@apapacy
Forked from ipepe/install-chrome-headless.sh
Created February 25, 2018 16:12
Show Gist options
  • Save apapacy/8a973ca2d549735bfe0c8b4b238f7c23 to your computer and use it in GitHub Desktop.
Save apapacy/8a973ca2d549735bfe0c8b4b238f7c23 to your computer and use it in GitHub Desktop.
Installing headless chrome on Ubuntu.
#!/bin/bash
# from https://chromium.woolyss.com/
# and https://gist.github.com/addyosmani/5336747
# and https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md
sudo apt-get update
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:canonical-chromium-builds/stage
sudo apt-get update
sudo apt-get install chromium-browser
chromium-browser --headless --no-sandbox http://example.org/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment