From 21fda2e55390c18df0d504aaa5824a092f21c10f Mon Sep 17 00:00:00 2001 From: quaxalber <64684396+quaxalber@users.noreply.github.com> Date: Wed, 22 May 2024 13:14:51 +0200 Subject: [PATCH] Fix: Install python3-dev (#119) --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index bbf35d7e..2225a5d5 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -57,7 +57,7 @@ cleanup() { main() { # Install prerequisites. colored_output "${GREEN}" "Installing bluetooth_2_usb prerequisites..." - { apt-get update && apt-get install -y git python3.11 python3.11-venv ; } || abort_install "Failed installing prerequisites." + { apt-get update && apt-get install -y git python3.11 python3.11-venv python3-dev ; } || abort_install "Failed installing prerequisites." # Determine the current script's directory and the parent directory scripts_directory=$(dirname $(readlink -f "$0"))