Unable to install n8n-nodes-proxmox

Describe the problem/error/question

I have tried to install n8n-nodes-proxmox on a couple of different n8n installs and both using the UI and trying it manually from the command line without success. I have also added “N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true” to the environment.

What is the error message (if any)?

Error loading package “n8n-nodes-proxmox” :The specified package could not be loaded Cause: Cannot find module ‘/home/node/.n8n/nodes/node_modules/n8n-nodes-proxmox/dist/nodes/ProxMox/ProxMox.node.js’ Require stack: - /usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@[email protected]_@[email protected]_08b575bec2313d5d8a4cc75358971443/node_modules/n8n-core/dist/nodes-loader/load-class-in-isolation.js - /usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@[email protected]_@[email protected]_08b575bec2313d5d8a4cc75358971443/node_modules/n8n-core/dist/nodes-loader/directory-loader.js - /usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@[email protected]_@[email protected]_08b575bec2313d5d8a4cc75358971443/node_modules/n8n-core/dist/nodes-loader/index.js - /usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@[email protected]_@[email protected]_08b575bec2313d5d8a4cc75358971443/node_modules/n8n-core/dist/index.js - /usr/local/lib/node_modules/n8n/node_modules/.pnpm/@n8n+db@file+packages+@n8n+db_@[email protected]_@opentelemetry+sdk-trace-base@1._f8efbbd8cfd63d0834d8dc4e6a96b3bc/node_modules/@n8n/db/dist/repositories/execution.repository.js - /usr/local/lib/node_modules/n8n/node_modules/.pnpm/@n8n+db@file+packages+@n8n+db_@[email protected]_@opentelemetry+sdk-trace-base@1._f8efbbd8cfd63d0834d8dc4e6a96b3bc/node_modules/@n8n/db/dist/repositories/index.js - /usr/local/lib/node_modules/n8n/node_modules/.pnpm/@n8n+db@file+packages+@n8n+db_@[email protected]_@opentelemetry+sdk-trace-base@1._f8efbbd8cfd63d0834d8dc4e6a96b3bc/node_modules/@n8n/db/dist/index.js - /usr/local/lib/node_modules/n8n/dist/commands/start.js - /usr/local/lib/node_modules/n8n/dist/command-registry.js

Please share your workflow

This is before I can create any workflow so nothing to show here. 

Share the output returned by the last node

N/A

Information on your n8n setup

  • n8n version: 1.114.4
  • Database (default: SQLite): SQLite
  • n8n EXECUTIONS_PROCESS setting (default: own, main): own,main
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
  • Operating system: Alpine Linux 3.22.1
1 Like

Same issue.
I tried to install it via pnpm, it installs, but n8n not registring it.

Same issue. How to contact the developer? Anyone knows?

I had the same issue with the “Cannot find module dist/nodes/ProxMox/ProxMox.node.js” error.
Here’s what worked for me inside my Docker container:

docker exec -it n8n /bin/sh
cd /home/node/.n8n/nodes
npm install n8n-nodes-proxmox
cp node_modules/n8n-nodes-proxmox/dist/nodes/ProxMox/ProxMox.svg node_modules/n8n-nodes-proxmox/dist/nodes/
sed -i 's#"dist/nodes/ProxMox/ProxMox.node.js"#"dist/nodes/ProxMox.node.js"#' /home/node/.n8n/nodes/node_modules/n8n-nodes-proxmox/package.json
exit
docker restart n8n

After that, I restarted the container and the node loaded correctly.

Sadly, this not work for me anymore in n8n version 1.118.1

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.