正如标题所述,我似乎无法在我的mac上安装NVM。我运行以下命令:
curl https://raw.githubusercontent.com/creationix/nvm/v0.11.1/install.sh | bash
但是我得到了这个
0curl: (7) Couldn't connect to server
被困在这一个星期了。我的macbook是最新的操作系统。
用浏览器打开url
https://raw.githubusercontent.com/creationix/nvm/v0.11.1/install.sh
把所有的代码复制到你电脑里的。sh文件中,
运行chmod +x install.sh
(假设文件名为install.sh)然后运行./install.sh
您是否尝试过文档中列出的命令
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
或
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash