mac brew install 镜像加速 2020-02-02 默认分类 暂无评论 992 次阅读 brew是mac上的包管理神器,但是有时候访问服务比较慢,这是我不能忍受的,我们需要加速一个brew的安装速度,brew的源都是github上的项目,所以我们只需要找对应项目的镜像项目来替换他 就能加速我们访问速度。 这里我将自己的mac的源都换成了清华的源 方法如下: ``` 替换brew.git cd "$(brew --repo)" git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git 替换homebrew-core.git cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git 替换homebrew-bottles echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile source ~/.bash_profile 更新生效 brew update ``` 安装速度明显变快了. 文章目录 替换brew.git 替换homebrew-core.git 替换homebrew-bottles 更新生效 标签: mac 转载请注明文章来源 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭