Lenny-Hu / note

blog
5 stars 1 forks source link

macOS 安装homebrew报错 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54解决方法 #66

Open Lenny-Hu opened 5 years ago

Lenny-Hu commented 5 years ago

https://brew.sh/index_zh-cn

第一步,获取install文件

把官网给的脚本拿下来 

curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_install

第二步,更改脚本中的资源链接,替换成中国科学技术大学的镜像

就是把这两句  BREW_REPO = “https://github.com/Homebrew/brew“.freeze 

CORE_TAP_REPO = “https://github.com/Homebrew/homebrew-core“.freeze 

更改为这两句 

BREW_REPO = “https://mirrors.ustc.edu.cn/brew.git “.freeze 

CORE_TAP_REPO = “https://mirrors.ustc.edu.cn/homebrew-core.git“.freeze  // 有可能只用改这一句

然后 /usr/bin/ruby ./brew_install