From d53ad4b68483d2991ced9ebb6773b07a2fa17e1b Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Sat, 21 Mar 2020 04:11:14 +0100 Subject: [PATCH] Add wget to basic_tools --- modules/install/ToolsInstaller.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/install/ToolsInstaller.py b/modules/install/ToolsInstaller.py index 4538361..e6c64f9 100644 --- a/modules/install/ToolsInstaller.py +++ b/modules/install/ToolsInstaller.py @@ -6,7 +6,8 @@ class ToolsInstaller: def basic_tools(self): """Install the most basic tools!""" print("Try to install basic Command-line tools") - subprocess.run("apt-get install -y bleachbit nano xrdp htop bash-completion dialog powertop tree", shell=True) + subprocess.run("apt-get install -y bleachbit nano xrdp htop bash-completion dialog powertop tree wget", + shell=True) print("Script ran to completion.") def hard_drive_tools(self):