Skip to content

Commit

Permalink
Fix: Install python3-dev (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
quaxalber authored May 22, 2024
1 parent fcdd3d2 commit 21fda2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit 21fda2e

Please sign in to comment.