Skip to content

Instantly share code, notes, and snippets.

@adamdilek
Forked from LoganGray/chromeinstall_ubu16.sh
Created August 16, 2019 15:06
Show Gist options
  • Save adamdilek/bf11e40f611c4f535fd175ca0cc94315 to your computer and use it in GitHub Desktop.
Save adamdilek/bf11e40f611c4f535fd175ca0cc94315 to your computer and use it in GitHub Desktop.
this worked to install selenium and google chrome on my Ubuntu 16 server.
#!/usr/bin/env bash
# used to install offical chrome and selenium on Ubuntu 16.04.1 LTS, Jan 2019
cd ~
sudo apt-get update
sudo apt install python-pip
pip install simplejson
pip install bs4
pip install selenium
apt-get install libasound2 libnspr4 libnss3 libxss1 xdg-utils unzip
sudo apt-get install -y libappindicator1 fonts-liberation
apt-get -f install
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome*.deb
# chromedriver also needs to be installed.
wget https://chromedriver.storage.googleapis.com/2.45/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
sudo mv chromedriver /usr/bin/chromedriver
sudo chown root:root /usr/bin/chromedriver # questionable - may need to add other user permissions
sudo chmod +x /usr/bin/chromedriver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment