From 1e391e22ce65d80b8b2fba0bd39eafee3205b81c Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Sat, 28 Feb 2026 10:21:39 +0100 Subject: [PATCH] Add build-essential and python3 dependencies Ensure build-essential and python3 are installed as prerequisites. ct/pangolin.sh now calls ensure_dependencies for these packages before setting up Node.js, and install/pangolin-install.sh adds them to the apt install list so build/runtime requirements are present during install. --- ct/pangolin.sh | 2 ++ install/pangolin-install.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ct/pangolin.sh b/ct/pangolin.sh index d31237e9e..bb208e6dc 100644 --- a/ct/pangolin.sh +++ b/ct/pangolin.sh @@ -29,6 +29,8 @@ function update_script() { exit fi + ensure_dependencies build-essential python3 + NODE_VERSION="24" setup_nodejs if check_for_gh_release "pangolin" "fosrl/pangolin"; then diff --git a/install/pangolin-install.sh b/install/pangolin-install.sh index d7910e389..b522551ac 100644 --- a/install/pangolin-install.sh +++ b/install/pangolin-install.sh @@ -15,6 +15,8 @@ update_os msg_info "Installing Dependencies" $STD apt install -y \ + build-essential \ + python3 \ sqlite3 \ iptables msg_ok "Installed Dependencies"