天天看點

Mac brew update更換brew鏡像源解決極其慢問題1 檢視Homebrew目前源2 更改brew鏡像源參考

每次 brew update 或 brew install xxx 都需要long time

安裝個軟體, 可以先按 Ctrl + c 先終止更新, 然後就可以繼續安裝了… 醉了!

1 檢視Homebrew目前源

cd /usr/local/Homebrew
git remote -v      

官方鏡像源

Mac brew update更換brew鏡像源解決極其慢問題1 檢視Homebrew目前源2 更改brew鏡像源參考
  • 一看到 github 就知道了慢的要老命!

趕緊的更換brew鏡像源走起!

2 更改brew鏡像源

進入brew主目錄

git remote set-url origin 
    git://mirrors.tuna.tsinghua.edu.cn/homebrew.git      

進入 core

git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
      
Mac brew update更換brew鏡像源解決極其慢問題1 檢視Homebrew目前源2 更改brew鏡像源參考

可選鏡像源

參考

https://blog.csdn.net/lwplwf/article/details/79097565