I have found a lot of tutorials for this but none where complete… Here you will find a simple tutorial to install n8n on a standalone Ubuntu 18.04 Server from A to Z.

Start by installing Node.js with it’s packet manager npm.

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs

We have to add some essential dependencies with the following command :

sudo apt install -y build-essential

Then we install another dependency manually with npm :

sudo npm install -g node-gyp

Finally we install n8n with the following command :

sudo npm install n8n -g --unsafe-perm

Leave a Reply

Your email address will not be published. Required fields are marked *