1. 安裝
互聯(lián)網用戶復制這段到終端運行即可安裝:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
對于局域網用戶,首先 macOS 默認情況下終端是不走代理的躏嚎,所以掛了梯子也不行弯予,需要先對終端配置代理是钥,參考SimonLiu009老師的文字篙梢,其實就是在
~/.zshrc
(根據所用終端不同)文件下增加這行代碼光羞,添加完會在新開終端中生效厉颤,沒有這個文件可以直接新建一個穴豫。- 僅設置http和https代理(只對當前終端有效)
export http_proxy=http://proxyAddress:port export https_proxy=http://proxyAddress:port
- 僅設置socks5代理(只對當前終端有效,代理地址假設為socks5://127.0.0.1:1080)
export ALL_PROXY=socks5://127.0.0.1:1080
- 長期設置需要將上述命令加入bash profile
- 通過alias來快速切換
alias setproxy="export ALL_PROXY=socks5://127.0.0.1:1080" alias unsetproxy="unset ALL_PROXY" alias ip="curl -i http://ip.cn"
2. 配置正確的庫
這時候安裝一些不常見的庫會出現No formulae found in taps.
的報錯
運行 brew doctor
發(fā)現默認安裝的homebrew-core
git 地址不對
Warning: Suspicious https://github.com/Homebrew/homebrew-core git origin remote found.
The current git origin is:
https://github.com/Homebrew/brew
With a non-standard origin, Homebrew won't update properly.
You can solve this by setting the origin remote:
git -C "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core" remote set-url origin https://github.com/Homebrew/homebrew-core
按照提示輸入上述命令,結果
Error: Fetching /usr/local/Homebrew failed!
/usr/local/Homebrew/Library/Homebrew/brew.sh: line 109: /usr/local/bin/brew: No such file or directory
發(fā)現 brew
命令不起作用了
下面嘗試進入文件夾逼友,強行更新homebrew-core
文件夾
cd /usr/local/Homebrew/Library/Taps/homebrew/
rm -rf homebrew-core
git clone https://github.com/Homebrew/homebrew-core.git
brew
命令還是不行精肃,一番查找發(fā)現是整個bin文件夾都沒有了,一般來說這是啟動文件所在的文件夾帜乞,安裝的時候會釋放司抱,于是想到重裝。
重新執(zhí)行/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
黎烈,文件校驗通過习柠,沒有重新下載匀谣,很快提示安裝完成。
嘗試brew doctor
顯示Your system is ready to brew.
完成资溃。