i install n8n using npm. it was working fine till version 1.100.0 but when i update to 1.102.0 or any latest model it gives error.
Error: Command “start” not found
I’m having similar issue with my Dockerfile and can’t find much information on this issue. I noticed there’s a few other people running into the same error. Did you figure out what’s causing the issue?
No, I haven’t found any solution yet. I just rolled back to the previous version (1.100.0), that works fine for me.
Hey I don’t know if this applies to your situation or not but in my case I’m using n8n version 1.107.2
While I was troubleshooting the error I noticed that in my situation: n8n it wasn’t creating the .n8n data directory. Since I’m using Dockerfile, I added in my entrypoint.sh file the step to create it
sudo mkdir -p /home/node/.n8n
And then obviously I had to set the permissions
sudo chown -R node:node /home/node/.n8n
sudo chmod /home/node/.n8n