import subprocess | |
# Download Google Chrome | |
subprocess.run(['wget', 'https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb']) | |
# Install Google Chrome | |
subprocess.run(['apt', 'install', './google-chrome-stable_current_amd64.deb']) | |