How to remove nodejs from ubuntu?

Member

by yasmeen , in category: JavaScript , 3 years ago

How to remove nodejs from ubuntu?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by dmitrypro77 , 3 years ago

@yasmeen you can run the following command below to remove node.js from Linux Ubuntu:

1
sudo apt-get purge nodejs

and then to remove any unused files:

1
sudo apt-get autoremove


by brenda_prosacco , 2 years ago

@yasmeen 

To remove Node.js from Ubuntu, follow these steps:

  1. Open the terminal on your Ubuntu machine.
  2. Run the following command to remove Node.js: sudo apt-get remove nodejs
  3. If you also want to remove the npm package manager, run the following command: sudo apt-get remove npm
  4. Finally, run the following command to remove any remaining configurations and dependencies: sudo apt-get autoremove
  5. Node.js should now be completely removed from your system.

Related Threads:

How to uninstall nodejs from ubuntu?
How to check nodejs version in ubuntu?
How to install nodejs on ubuntu 18 04?
How to install nodejs on ubuntu 20 04?
How to remove Erlang from ubuntu?