Linux安装与卸载nodejs/卸载npm

编译mediasoup, 需要先安装nodejs npm。但是我一不小心,安装了最新的14.x版本。结果老出问题:

npm ERR! cb() never called!

npm ERR! This is an error with npm itself. Please report this error at:
npm ERR!     <https://npm.community>

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/dyx/.npm/_logs/2020-07-21T05_26_15_319Z-debug.log

然后就想着卸载,重新安装,从网上找到的卸载办法如下(不管用):

================================================

=================================================

第一步卸载不掉,第二步没有目录。

解决方案:
sudo apt remove nodejs

sudo apt remove npm

sudo apt remove node

三步搞定。然后输入 : nodejs -v  就提示没有这个安装包了。

然后重新安装:

Node.js v12.x:

# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs

参考链接:https://github.com/nodesource/distributions

猜你喜欢

转载自blog.csdn.net/qq_34732729/article/details/107486950
今日推荐