From 366c210b0183ab0cad9d0852c77c776721c3b0a9 Mon Sep 17 00:00:00 2001 From: AndrewQuijano Date: Tue, 9 Jul 2024 21:46:22 -0400 Subject: [PATCH] Add sudo to install lava binaries --- install.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/install.sh b/install.sh index b4a00cf9..2bda9bf7 100755 --- a/install.sh +++ b/install.sh @@ -47,15 +47,12 @@ else echo "Unsupported Ubuntu version: $version. Create a list of build dependencies in ${dep_base}_{base,build}.txt and try again." exit 1 fi -$SUDO apt-get build-dep qemu -progress "Installed build dependencies" -$SUDO pip3 install --upgrade pip +progress "Installed build dependencies" -# This seems to be the better replacement to have all python packages -$SUDO pip3 install -r requirements.txt +pip3 install --upgrade pip +pip3 install -r requirements.txt progress "Installed Python requirements" -./setup_container.sh - +$SUDO ./setup_container.sh progress "Installed LAVA"