本来想更新npm为淘宝源,执行了一下代码:
npm install -g cnpm --registry=https://registry.npm.taobao.org
可是报错如下:
npm install -g npm
npm ERR! code MODULE_NOT_FOUND
npm ERR! Cannot find module 'internal/fs'
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/username/.npm/_logs/2017-08-04T09_24_59_677Z-debug.log
尝试改变模块权限:
sudo chmod -R 777 /usr/local/lib/node_modules/
依然无效,在网上找了很多办法,最后的解决办法是:
试尽各种办法,最后还是手动卸载了再重装了npm
1、sudo npm uninstall npm -g
如果步骤1卸不掉npm了(我就是这种情况)
2、进到npm的安装目录 /usr/local/lib/node_modules/npm/
sudo make uninstall
3、手动重装npm
curl -L[https://npmjs.com/install.sh](https://npmjs.com/install.sh)| sh
4.查看npm版本
npm -v