如果你用的是
zsh
,下面命令搞定:echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"' >> ~/.zshrc echo 'export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"' >> ~/.zshrc echo 'export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles"' >> ~/.zshrc source ~/.zshrc brew update
bash
类似~
在国内使用 Homebrew 的速度真心不敢恭维,尤其是在 brew update
的时候经常卡住不动。
换用 brew update --verbose
你会发现是 git fetch
的速度超级慢导致的,所以还是要看 GitHub 的连接速度。
这段时间被迫宅在家,brew
用得越多越不爽,只能试试换成国内镜像源的方法,用后才知道这确实可行。
下面整理几个可用的开源镜像,主要针对的是 macOS 上的 Homebrew,用得着的时候再来看看。
我最先找到的就是清华大学开源软件镜像,这个启发了我挨个去试哪个好用。
首次安装
如果系统上还没有安装 Homebrew,可以不用官方的脚本安装 (托管于 GitHub
标签:镜像,git,mirrors,--,https,homebrew,brew,Homebrew,替换 From: https://www.cnblogs.com/gnz48/p/16771502.html