Difference between revisions of "N8n"

From Notes_Wiki
m
m
Line 6: Line 6:


=Installation=
=Installation=
Install nodejs via:
Install nodejs via below as root user:
<pre>
<pre>
sudo dnf -y install npm
curl -fsSL https://rpm.nodesource.com/setup_22.x -o nodesource_setup.sh
sudo -E bash nodesource_setup.sh
sudo dnf install -y nodejs
node -v
npm -v
</pre>
</pre>



Revision as of 12:18, 5 July 2025

Home > Local system based AI tools > N8n

About

n8n can be used to make AI workflows and execute them.


Installation

Install nodejs via below as root user:

curl -fsSL https://rpm.nodesource.com/setup_22.x -o nodesource_setup.sh
sudo -E bash nodesource_setup.sh
sudo dnf install -y nodejs
node -v
npm -v

To install N8n on local system we can use npn and install via root user using:

sudo npm install n8n -g


Executing

Then we can start n8n service as root user via:

n8n start

Then open http://locahost:5678/ and create account to work with n8n workflows.


Home > Local system based AI tools > N8n