From 4a3200d0c0a44c58b7b8ce7b4c6a5313ff6473c1 Mon Sep 17 00:00:00 2001 From: Vasista Vovveti Date: Mon, 19 Feb 2024 18:37:55 -0800 Subject: [PATCH] Run apt update and install sqlite3 (#1247) --- scripts/install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 985b61ea9..fe845d87c 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -80,6 +80,9 @@ if [[ "$DISTRO" = "Ubuntu" && "$INSTALL_NETWORK_MANAGER" != "true" && -z "$QUIET fi fi +echo "Update package list" +apt-get update + echo "Installing curl..." apt-get install --yes curl echo "curl installation complete." @@ -136,6 +139,9 @@ echo "Installing v4l-utils..." apt-get install --yes v4l-utils echo "v4l-utils installation complete." +echo "Installing sqlite3" +apt-get install --yes sqlite3 + echo "Downloading latest stable release of PhotonVision..." mkdir -p /opt/photonvision cd /opt/photonvision