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.
This commit is contained in:
chrikodo
2025-11-09 16:55:29 +01:00
committed by GitHub
parent a89b841684
commit a3d42dba45

View File

@@ -16,7 +16,9 @@ update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt install -y \ $STD apt install -y \
ca-certificates \ ca-certificates \
build-essential build-essential \
python3 \
python3-setuptools
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
NODE_VERSION="22" setup_nodejs NODE_VERSION="22" setup_nodejs