安装
下载安装脚本,可以使用cURL或Wget,最新版本可以到github查看https://github.com/nvm-sh/nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
在安装的时候 或许会出现错误:# Failed to connect to raw.githubusercontent.com port 443
解决方案:
原因
由于某些你懂的因素
,导致GitHub的raw.githubusercontent.com
域名解析被污染了。
解决方法
通过修改hosts
解决此问题。
查询真实IP
在https://www.ipaddress.com/查询raw.githubusercontent.com的真实IP。
修改hosts
sudo vim /etc/hosts
添加如下内容:
199.232.96.133 raw.githubusercontent.com
</article>
提示: vim 中 :wq! 为强制保存退出
查看是否已经安装好
nvm --version
使用
查看可供安装的版本
nvm ls-remote
安装一个nodejs版本
nvm install v12.16.1
查看本地安装的版本
nvm ls