小白刚入手MacBook,对环境系统配置还不熟悉,记录下艰难的配置过程。
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
安装时出现:curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to raw.githubusercontent.com:443
原因是 raw.githubusercontent.com 的ip地址是国外的,连接超时。解释地址:curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to raw.githubusercontent.com:443_Yamol915的博客-CSDN博客
网上说找hosts文件配置,shift+command+g搜索/etc/hosts,然后给hosts配置做映射,这个是参考链接解决curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused 问题_Jolting的博客-CSDN博客
查找本机器ip地址
配置/创建修改 .bash_profile 文件
我这里配置后启动后,还是报错。
安装brew,配置为国内镜像地址,配置全局git属性,最后修改下报错信息,nvm install v14.17.0 ,滴成功!
安装brew,运行下面地址,设置1走国内镜像。
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
参考:
Mac全自动安装brew一键配置国内镜像源_grootblockchain的博客-CSDN博客_brew 国内源
Mac全自动安装brew一键配置国内镜像源_grootblockchain的博客-CSDN博客_brew 国内源
这个时候安装成功,开开心心运行brew install nvm 来安装,提示:fatal: not in a git directory
这里是提示git没有配置,进行配置:Git解决fatal: not in a git directory_Jeven-jiang的博客-CSDN博客
再来一次,这次提示:fatal: not in a git directory Error: Command failed with exit 128: git
输入:
brew doctor
这样brew安装就好了
brew install nvm
以为这样就搞定了,结果提示:command not found: nvm,下面是解决方法:
这样就可以了