testp / app.py
sahanind's picture
Update app.py
7f560d1 verified
raw
history blame
250 Bytes
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'])