nvm是node版本管理和控制工具
下载
nvm-windows 版本下载地址 https://github.com/coreybutler/nvm-windows/releases
安装
按步骤走
管理员身份打开 cmd 在命令行输入nvm ,可看到如下内容代表安装成功:
常用命令
- nvm ls 查看已经安装的所有nodejs版本
- nvm install 版本号,可安装指定版本的nodejs
nvm install 14.17.3 - nvm use 版本号,即可切换到指定版本
nvm use 14.17.3 - nvm uninstall 版本号,卸载指定版本
nvm uninstall 14.17.3
遇到的问题
问题1
`nvm install 14.17.3时 cmd提示下载npm时候失败`
错误信息
Downloading npm version 6.14.13... Error while downloading https://github.com/npm/cli/archive/v6.14.13.zip - Get "https://github.com/npm/cli/archive/v6.14.13.zip": read tcp 192.168.0.102:51464->20.205.243.166:443: wsarecv: An established connection was aborted by the software in your host machine.
panic: runtime error: invalid memory address or nil pointer dereference
解决方法: 找到nvm的安装路径 找到setting.txt 进行修改 添加阿里镜像:
node_mirror: http://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/
在命令行中删除安装的node.js nvm uninstall 14.17.3 重新下载nvm install 14.17.3
问题2
`nvm use 16.13.0`
运行`use`命令时报错exit status 1: ��?���?��?��?�д?�����
解决方法: 管理员身份运行cmd
参考博客1 参考博客2
|