This image includes Python 3.10 by default. it can be used to run python scripts inside n8n using the Execute Command node or code snippets using the custom node Python Function.
Run python 3.10 code on n8n.
Using docker compose docker-compose.yml
The image includes the custom module n8n-nodes-python by default.
We can use this custom node Python Function to run a python code over
the items
(works the same way as Function node)
You can run *.py
files that has been mounted to the container using
the ExecuteCommand node.
The ExecuteCommand node can be used to install python
packages or install dependencies from a mounted requirements.txt
file to the container.
It can be combined with n8nTrigger to install packages directly after starting the container.
Once the packages are installed, it can be used in the Python Function node.
import <package>
The official n8n documentation can be found under: https://docs.n8n.io
Additional information and example workflows on the n8n.io website: https://n8n.io
Learn how to run n8n in Docker