window 安装node版本管理 nvm
安装前,这里有一点需要注意,如果以前安装过node,需要先卸载,并且要把目录清理干净。
nvm 的下载地址:https://github.com/coreybutler/nvm-windows/releases
安装指定版本 nvm install 6.10.0
查看已经安装的版本 nvm list
指定版本 nvm use 6.10.0
删除指定版本 nvm uninstall 6.10.0
显示当前版本 nvm current
成功安装nvm后,安装node成功,但是npm并没有成功
解决办法:
1.打开nvm的安装文件夹,修改settings文件中的
node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/
2.在cmd中使用nvm 卸载当前指定的node版本 nvm uninstall 指定版本号
3. 使用nvm ls 查询是否卸载成功
4.成功后 使用 nvm install xx 安装指定版本
5. 查看版本 node -v npm -v