为什么80%的码农都做不了架构师?>>>
mac系统中使用brew作为包管理工具,类似centos中的yum,ubuntu中的apt-get,在使用brew update的使用,有时候会长时间无反应,或者中途断开连接,这是因为brew默认的镜像在国外,被墙或者被限速导致的,只要修改brew的镜像为国内镜像就可以了。
使用中科大的镜像
替换默认源
- 第一步,替换brew.git
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
- 第二步:替换homebrew-core.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
- 使用brew update进行更新,发现速度变的很快。替换镜像完成。