节点与集成
Manual installation
You can manually install community nodes from the npm registry on self-hosted n8n.
You need to manually install community nodes in the following circumstances:
- Your n8n instance runs in queue mode.
- You want to install private packages.
Install a community node
Access your Docker shell:
docker exec -it n8n shCreate ~/.n8n/nodes if it doesn't already exist, and navigate into it:
mkdir ~/.n8n/nodes
cd ~/.n8n/nodesInstall the node:
npm i n8n-nodes-nodeNameThen restart n8n.
Uninstall a community node
Access your Docker shell:
docker exec -it n8n shRun npm uninstall:
npm uninstall n8n-nodes-nodeNameUpgrade a community node
Upgrade to the latest version
Access your Docker shell:
docker exec -it n8n shRun npm update:
npm update n8n-nodes-nodeNameUpgrade or downgrade to a specific version
Access your Docker shell:
docker exec -it n8n shRun npm uninstall to remove the current version:
npm uninstall n8n-nodes-nodeNameRun npm install with the version specified:
# Replace 2.1.0 with your version number
npm install n8n-nodes-nodeName@2.1.0官方原文和授权
本页来自 N8N 英文官方网站固定快照,并转换成 xueai 静态页面。内容以 N8N 持续更新的官方页面为准。