This file contains 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
# Copyright 2015 Andrew Gunnerson <[email protected]> | |
# Copyright 2024 antiops@github | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software |
This file contains 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
#!/usr/bin/env bash | |
# used to install offical chrome and selenium on Ubuntu 16.04.1 LTS, 18.04 desktop, Jan 2020 | |
# also tested and works on Elem OS 5.1 :) | |
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 |