diff --git a/install.py b/install.py index 7443a30..b9064fd 100644 --- a/install.py +++ b/install.py @@ -24,7 +24,7 @@ def check_os(): if __name__ == "__main__": check_os() if is_debian: - os.system('sudo apt-get update && apt-get upgrade -y') + os.system('sudo apt-get update && sudo apt-get upgrade -y') for p in linux_packages: os.system(f'sudo apt-get install {p} -y')