mac預設的homebrew源託管與github,其在國內不好訪問。所以很多同學發現update brew時候常常失敗。
解決方法就是替換brew的源。實際操作中,有4個源需要替換。(這裡用的是中科大的源,其他也有不錯的,比如清華的,大家可以自行搜尋)
1、替換homebrew預設源。
預設是替換:
cd "$(brew --repo)"
git remote set-url origin
2、替換homebrew-core預設源
預設是 替換:
cd "$(brew --repo)/library/taps/homebrew/homebrew-core"
git remote set-url origin
3、替換homebrew-cask預設源
預設是替換
cd /usr/local/homebrew/library/taps/caskroom/homebrew-cask
git remote set-url origin git:
4、替換homebrew bottles
實際就是修改環境變數。我的mac預設是沒有這個變數的,目前我也沒用到homebrew bottle,不過看其他資料有宣告這個變數的,方法是
echo 'export homebrew_bottle_domain=' >> ~/.bash_profile
source ~/.bash_profile
如果想恢復官方源,只需要把以上4步反向操作。當然在替換時候也可以使用git remote set-url --add origin 這樣會另新增乙個源,原來的源也會保留,具體我們可以通過git config -e看配置檔案.
Mac安裝homebrew,並替換使用清華映象源
mac os moj e 10.14.5 1.在 bash profile中設定路徑 if uname s linux then brew type linuxbrew else brew type homebrew fi export homebrew brew git remote export...
1 Mac安裝Homebrew及切換映象源
mac安裝homebrew 一 homebrew簡介及安裝 homebrew時mac的os x上的軟體安裝管理工具,類似於apt get或者yum。擁有安裝 解除安裝 更新 檢視 搜尋等很多使用功能。簡單的一條指令,就可以實現包管理,而不用你關心各種依賴和檔案路徑等情況,十分方便和快捷。在mac上安...
homebrew安裝 換源
接下來更換homebrew的源,首先確認您使用的是zsh還是bash終端,macos自帶的終端是zsh終端。如果使用的是zsh,則檢視使用者的根目錄下是否有.zshrc檔案,如果沒有則用以下命令新建乙個 touch zshrc 然後在這個檔案裡寫入如下內容 export homebrew brew ...