原文链接:https://baijiahao.baidu.com/s?id ... 9&wfr=spider&for=pc
通常对于刚入手苹果电脑的小白来说,使用默认的方式安装brew,会出现下载慢的情况,会耗费很长时间,并且也不一定能成功。 通常解决方案是将安装源换成国内源。 以下为brew安装的具体过程 1)将brew的install文件下载本地 cd curl -fsSL https://raw.githubusercontent.co ... ter/install>> brew_install 2)修改install文件的镜像源 vimbrew_install 进入编辑模式,然后将brew_install文件里面的两行代码替换掉,待替换的代码为: BREW_REPO = "https://github.com/Homebrew/brew".freeze CORE_TAP_REPO ="https://github.com/Homebrew/homebrew-core".freeze 替换为: BREW_REPO ="git://mirrors.ustc.edu.cn/brew.git".freeze CORE_TAP_REPO ="git://mirrors.ustc.edu.cn/homebrew-core.git".freeze 3)安装brew 代码如下: /usr/local/bin/ruby ~/brew_install 4) 修改PATH变量,转成root权限 vim /etc/profile 在打开的profile文件中加入下面这一行 exportPATH=/usr/local/binPATH 5)执行点命令: source/etc/profile 更新配置 6)验证brew是否安装成功:brewdoctor 7)安装wget:brew install wget 8)更换国内源 cd "$(brew --repo)" git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin https://mirrors.tuna.tsinghua.ed ... w/homebrew-core.git brew update
https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
|