Skip to content

Commit a3d42db

Browse files
authored
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.
1 parent a89b841 commit a3d42db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

install/n8n-install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ update_os
1616
msg_info "Installing Dependencies"
1717
$STD apt install -y \
1818
ca-certificates \
19-
build-essential
19+
build-essential \
20+
python3 \
21+
python3-setuptools
2022
msg_ok "Installed Dependencies"
2123

2224
NODE_VERSION="22" setup_nodejs

0 commit comments

Comments
 (0)