使用nvm安装node
一、进入nvm下载页面(Windows):
https://github.com/coreybutler/nvm-windows/releases
如果打不开GitHub,可以尝试修改host文件:
https://www.cnblogs.com/starlog/p/14458834.html
二、点击“nvm-setup.zip”进行下载
三、解压并安装,使用默认配置,安装路径不能有中文
四、添加镜像源:
nvm node_mirror http://npmmirror.com/mirrors/node/
nvm npm_mirror http://npmmirror.com/mirrors/npm/
五、nvm的使用方法:
1.安装最新版node:
nvm install latest
2.安装指定版本node:
nvm install 14.15.0
3.查看已安装的node版本:
nvm ls
4.使用指定版本node:
nvm use 14.15.0
5.卸载指定版本node:
nvm uninstall 14.15.0
六、建议使用LTS版本,最新的版本有一些兼容性问题
nvm install lts