Mac机的Package管理,除了用App Store外, 一般都用Homebrew,官网:brew.sh。国内,如果按官网的安装方法,网速太慢又断线,基本上是装不了。解决办法是用国内镜源。网上有不少介绍使用国内镜源的资料,但是,看了很多跟着做都是装不好,最后花了几天搞定了,决定要把经验写下来,以节省后来者的时间。
第一步 下载脚本 (script file)
先把安装homebrew用的script文档下载, Command Line:
%curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_install
(注意:先用浏览器试一下网址 https://raw.githubusercontent.com有没有响应,没有的话,是没法把script文档下载的)
第二步 使用国内镜源安装
1. 修改brew_install
BREW_REPO = “https://github.com/Homebrew/brew“.freeze
改为:
BREW_REPO = “https://mirrors.ustc.edu.cn/brew.git “.freeze
2. 执行脚本
打开终端,运行脚本brew_install:
%/usr/bin/ruby brew_install