@ferchy/n8n-nodes-aimc-toolkit 0.1.42 → 0.1.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -93,7 +93,8 @@ Please return only the JavaScript code for the AIMC Code node.
|
|
|
93
93
|
Python is optional. **JavaScript works out of the box.**
|
|
94
94
|
If you switch the node to Python mode, Python must be installed on the same host/container where n8n runs.
|
|
95
95
|
|
|
96
|
-
We do **not** auto-install Python during npm install because system-level installs are fragile in
|
|
96
|
+
We do **not** auto-install Python during npm install because system-level installs are fragile in containers and often fail or get blocked. This keeps installs reliable and avoids broken deployments.
|
|
97
|
+
**Why this approach:** n8n runs inside containers, npm is JavaScript-only, and many hosts block install scripts. Letting you install Python on the host keeps it stable, predictable, and under your control.
|
|
97
98
|
|
|
98
99
|
**Options in the node**
|
|
99
100
|
- **Python Path**: path to the Python binary (default `python3`).
|