节点与集成

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:

Install a community node

Access your Docker shell:

sh
docker exec -it n8n sh

Create ~/.n8n/nodes if it doesn't already exist, and navigate into it:

sh
mkdir ~/.n8n/nodes
cd ~/.n8n/nodes

Install the node:

sh
npm i n8n-nodes-nodeName

Then restart n8n.

Uninstall a community node

Access your Docker shell:

sh
docker exec -it n8n sh

Run npm uninstall:

sh
npm uninstall n8n-nodes-nodeName

Upgrade a community node

Upgrade to the latest version

Access your Docker shell:

sh
docker exec -it n8n sh

Run npm update:

sh
npm update n8n-nodes-nodeName

Upgrade or downgrade to a specific version

Access your Docker shell:

sh
docker exec -it n8n sh

Run npm uninstall to remove the current version:

sh
npm uninstall n8n-nodes-nodeName

Run npm install with the version specified:

sh
# Replace 2.1.0 with your version number
npm install n8n-nodes-nodeName@2.1.0

官方原文和授权

本页来自 N8N 英文官方网站固定快照,并转换成 xueai 静态页面。内容以 N8N 持续更新的官方页面为准。

来源、授权与修改

本站保留许可证、固定提交号、社区作者和修改说明,不代表 n8n 对本站背书。

查看许可证查看来源和修改说明