From f899a09fe28d464e889c85cf31ffeba692626584 Mon Sep 17 00:00:00 2001 From: AiutoPcAmico <98831402+AiutoPcAmico@users.noreply.github.com> Date: Fri, 29 Dec 2023 14:23:41 +0100 Subject: [PATCH] Added some packages needed for installation --- setup/start.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup/start.sh b/setup/start.sh index dc820d2b..fe6c0378 100755 --- a/setup/start.sh +++ b/setup/start.sh @@ -4,11 +4,21 @@ source setup/functions.sh # load our functions + +# START AiutoPcAmico modification +# installing required packages +echo "Installing required packages: curl nano lsb-release locales" +apt_install curl nano lsb-release locales +# END AiutoPcAmico modification + # Check system setup: Are we running as root on Ubuntu 18.04 on a # machine with enough memory? Is /tmp mounted with exec. # If not, this shows an error and exits. source setup/preflight.sh + + + # Ensure Python reads/writes files in UTF-8. If the machine # triggers some other locale in Python, like ASCII encoding, # Python may not be able to read/write files. This is also