Mac brew安装软件镜像加速
大家伙可能碰到Mac下brew安装软件慢的问题,可以添加加速镜像来解决。
在.bash_profile文件中加入:
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"
# brew4.x API加速
export HOMEBREW_API_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/api"
然后source一下:
source .bash_profile
再来用brew来安装软件,速度快了很多!