From a3d42dba453656597363562c3b485f5900bec0de Mon Sep 17 00:00:00 2001 From: chrikodo Date: Sun, 9 Nov 2025 16:55:29 +0100 Subject: [PATCH] fix(n8n): Add python3-setuptools dependency for Debian 13 (#9007) Fixes ModuleNotFoundError: No module named 'distutils' during sqlite3 compile on Python 3.12+ (Debian 13) by adding the required setuptools package. --- install/n8n-install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install/n8n-install.sh b/install/n8n-install.sh index c017a12d8..c9cd5efaa 100644 --- a/install/n8n-install.sh +++ b/install/n8n-install.sh @@ -16,7 +16,9 @@ update_os msg_info "Installing Dependencies" $STD apt install -y \ ca-certificates \ - build-essential + build-essential \ + python3 \ + python3-setuptools msg_ok "Installed Dependencies" NODE_VERSION="22" setup_nodejs