第一步,先查看本机node.js版本:
node -v
第二步,清除node.js的cache:
sudo npm cache clean -f
第三步,安装 n 工具,这个工具是专门用来管理node.js版本的,别怀疑这个工具的名字,是他是他就是他,他的名字就是 "n"
sudo npm install -g n
第四步,安装最新版本的node.js
sudo n stable
第五步,再次查看本机的node.js版本:
node -v
第六步,更新npm到最新版:
sudo npm install npm@latest -g
第七步,验证
node -v
npm -v
Mac下命令行安装node.js及切换不同版本nodejs
sudo n --lastest //最新版
sudo n --stable //稳定版
sudo n 4.x //4系列版本
sudo n 6.x //6系列版本
切换
sudo n
升级最新的npm
npm install -g npm
npm -g install [npm@2.9.1](mailto:npm@2.9.1)
npm install -g cnpm --registry=[http://registry.npm.taobao.org](http://registry.npm.taobao.org/)
npm -g install c[npm@2.9.1](mailto:npm@2.9.1) --registry=http://registry.npm.taobao.org
!!!! 升级失败问题
https://www.cnblogs.com/chaoyangya/p/10484513.html
网友评论