From 05823c3cb5cad99e1d7e8ca48eea0d76c565eeac Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 18 Jun 2026 11:53:15 +0200 Subject: [PATCH] flowise: add deps / uv / python 3.11 (#15177) --- install/flowiseai-install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/install/flowiseai-install.sh b/install/flowiseai-install.sh index 1af403d16..4291f42a1 100644 --- a/install/flowiseai-install.sh +++ b/install/flowiseai-install.sh @@ -14,12 +14,17 @@ network_check update_os msg_info "Installing Dependencies" -$STD apt install -y build-essential python3-dev +$STD apt install -y \ + build-essential \ + pkg-config msg_ok "Installed Dependencies" +PYTHON_VERSION="3.11" setup_uv NODE_VERSION="24" setup_nodejs msg_info "Installing FlowiseAI (Patience)" +PYTHON_BIN="$(uv python find 3.11)" +export npm_config_python="$PYTHON_BIN" $STD npm install -g flowise \ @opentelemetry/exporter-trace-otlp-grpc \ @opentelemetry/exporter-trace-otlp-proto \