Downlad serf hosted locally

Hello,

how can i get the Link to download the self hosted locally version to install in my pc please ?

Thanks

Hi @Osama_Al-Ani , welcome!
Read this:

Cheers!

Hello @Osama_Al-Ani you can download the self hosted version of n8n for your PC in a couple of ways, the primary method is using npm Node.js Package Manager or Docker.

  • Install Node.js from nodejs.org
  • Open your Command Prompt as Administrator and run:
npm install -g n8n

After installation, simply type n8n start in your terminal to launch it

Install via Docker; This is the best method if you want your workflows and settings to persist safely, using containers

  • Download and install Docker Desktop for Windows from docker.com
  • Open your terminal and run this to create a persistent data volume and start n8n
docker volume create n8n_data
docker run -it --rm --name n8n -p 5678:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n