Unable to uninstalling n8n, local installed on a macbook

I want to remove my local installed n8n from my macBook pro.
I removed nod.js, but unable to remove n8n files completely from my laptop.
‘’’
ps -ef | grep n8n
501 1687 1674 0 5:44PM ttys000 0:00.00 grep n8n
‘’’

Can someone, please, advise on how to completely remove n8n installation?

Kind regards,
Robert

You should really try local install via docker / docker compose. Much more stable.

Thank you for your tip to run it in docker!
But I would like to first totally remove the old installation before moving on with the new installation of n8n.

1 Like

Sure you used node? Should just be able to:

npm uninstall -g n8n

Thanks for your suggestion! But I have done thus already.
I am still having the following:

ps -ef | grep n8n   
  501  9319  1674   0  6:32PM ttys000    0:00.00 grep n8n

I believe some grep executions will show your ps request in the output, if its just one you can safely assume its no longer installed.

You can check via:

npm list -g

After I uninstalled node.js and npm.

npm list -g
zsh: command not found: npm

So it can not befound

Oh I see, you didnt need to uninstall node, but that works too! Did you get it to work in docker then?

I prefer to clean my system firts.
I tried reinstalling, but I am getting errors.

So, hopefully you can help deleting it completely first.

Thanks for your feed back🙏🏻

Did you try install docker / docker compose and use the docker compose file:

Docker compose is probably easier. What errors are you encountering?

I understand your docker suggestions.

But I would like to first clean my Mac before moving on.
Hopefully it is not so difficult to clean my system first.

Hopefully some one can point out how to?

You should be fine if you removed node / npm and the n8n package.

Thanks but their are still parts of the instalment working. Because when I do a new fresh installation it is not willing to do so.

Why is it so difficult to totally uninstall non from my MacBook?

What do you mean still working? Screenshots?

ps -ef | grep n8n
501 9319 1674 0 6:32PM ttys000

Shows that process parts of in are still running

When you use ps, it will show in the output your own ps session because it contains n8n. I believe it is gone for you.

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