1. http/1.1
在mac安装nvm时,在解决了443的错误之后,又提示 git 拉取 的错误
fatal: unable to access 'https://github.com/nvm-sh/nvm.git/'
:HTTP/2 stream 1 was not closed cleanly before end of the underlying stream
通过排查发现,是 git 默认使用的通信协议出现了问题,可以通过将默认通信协议修改为 http/1.1
来解决该问题。
git config --global http.version HTTP/1.1
这样改为 http/1.1 之后,我们再回到终端,按照执行 nvm官网提示进行安装即可。
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
安装完成之后,执行 nvm --version
,如果有版本,则表明安装成功。文章来源:https://www.toymoban.com/news/detail-539777.html
如果仍然提示command not found: nvm
,则还需最后一步,请看这篇文章《ac安装nvm成功,关闭终端后,仍然报错:zsh: command not found:nvm 解决方案》。文章来源地址https://www.toymoban.com/news/detail-539777.html
到了这里,关于mac安装nvm报错 :HTTP/2 stream 1 was not closed cleanly before end of the underlying stream 解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!