How to completely uninstall node and npm on mac

How to completely uninstall node and npm on mac

npm uninstall

 sudo npm uninstall npm -g

If you encounter this sentence and cannot uninstall npm, don't worry, the blogger has other ways, hahaha, then read on. First, we need to enter the folder where npm is located.

cd /usr/local/lib/node_modules/npm

Next we execute it under the npm file

sudo make uninstall

Next, if we see this interface, it means that we have successfully uninstalled

insert image description here

Test with npm -v . If it shows not found, it means the uninstallation was successful.

insert image description here

Node.js uninstall

 sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
 sudo rm -rf /usr/local/include/node /Users/$USER/.npm 
 sudo rm /usr/local/bin/node 
 sudo rm /usr/local/share/man/man1/node.1
 sudo rm /usr/local/lib/dtrace/node.d

Verify success

If you have executed the above code in order, we need to verify whether we have deleted it successfully.

If the following result appears, it means that we have deleted it successfully.

The same verification method, node -v displays the following interface, indicating that our uninstallation is successful

insert image description here

nodejs npm reinstall

Re-download from the official website

https://nodejs.org/en/download/current/

References:

How to uninstall node on Mac: https://zhuanlan.zhihu.com/p/41795892

The above is the details of completely uninstalling node and npm and reinstalling them on Python programming mac. For more information about completely uninstalling node and reinstalling npm on mac, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Node.js installation tutorial and detailed explanation of NPM package manager usage
  • How to completely uninstall node and npm on Mac
  • Detailed explanation of the process of uninstalling and installing Node.js and npm
  • How to uninstall npm global modules and modify the default installation directory

<<:  Use of Linux ifconfig command

>>:  Solution to the Chinese garbled code problem in the decompressed version of MYSQL

Recommend

Problems with creating placeholders for HTML selection boxes

I'm using a placeholder in a text input and i...

Detailed explanation of MySQL execution plan

The EXPLAIN statement provides information about ...

What to do if you forget your Linux/Mac MySQL password

What to do if you forget your Linux/Mac MySQL pas...

jQuery implements the bouncing ball game

This article shares the specific code of jQuery t...

MySQL 8.0.24 installation and configuration method graphic tutorial

This article shares the installation tutorial of ...

Several ways to center a box in Web development

1. Record several methods of centering the box: 1...

MySQL query statement simple operation example

This article uses examples to illustrate the simp...

Analysis of the Poor Performance Caused by Large Offset of LIMIT in MySQL Query

Preface We all know that MySQL query uses the sel...

JS cross-domain XML--with AS URLLoader

Recently, I received a requirement for function ex...

Demystifying the HTML 5 Working Draft

The World Wide Web Consortium (W3C) has released a...

JS Decorator Pattern and TypeScript Decorators

Table of contents Introduction to the Decorator P...

Detailed explanation of client configuration for vue3+electron12+dll development

Table of contents Modify the repository source st...

How to connect XShell and network configuration in CentOS7

1. Linux network configuration Before configuring...

JavaScript custom plug-in to implement tab switching function

This article shares the specific code of JavaScri...