目前支援macos和linux系統。主要有四個部分組成: brew、homebrew-core 、homebrew-cask、homebrew-bottles。
名稱說明
brew
homebrew 源**倉庫
homebrew-core
homebrew 核心源
homebrew-cask
提供 macos 應用和大型二進位制檔案的安裝
homebrew-bottles
預編譯二進位制軟體包
1.安裝
/bin/bash -c "$(curl -fssl "
curl: (7) failed to connect to raw.githubusercontent.com port 443: connection refused
原因:這是 訪問不穩定引起的。
換一種科學高效的安裝方法,即方法二
/usr/bin/ruby -e "$(curl -fssl "
注:注意這裡的速度,幾百kib/s或幾m/s才是正常的。若只有幾kib/s,通常為無效的安裝方法,一般載入了百分之幾十後就會報錯。
2.安裝時出現的問題
1)若出現 error: checksum mismatch.
這裡是由homebrew目錄下的portable-ruby-2.6.3_2.yosemite.bottle.tar.gz檔案引起的安裝中斷,只需要到上面對應的路徑裡,刪掉這個檔案,重新執行安裝命令即可:
/usr/bin/ruby -e "$(curl -fssl "
2)若卡在了cloning into...
由這裡的龜速可斷定卡住了,立馬用control + c中斷指令碼,然後執行以下命令:
cd "$(brew --repo)/library/taps/" mkdir homebrew && cd homebrew git clone git:
執行後可看到:
速度立馬快得飛起,一下子就能裝好。
注:最後出現 installation successful! 或者 checking out files: 100% (5392/5392), done. 說明安裝成功。
3.替換homebrew 的安裝源
brew、homebrew/core是必備專案,homebrew/cask、homebrew/bottles按需設定
1)必備設定
替換 brew.git:
git -c "$(brew --repo)" remote set-url origin
替換 homebrew-core.git:
2)按需設定
替換 homebrew-cask.git:
git -c "$(brew --repo homebrew/cask)" remote set-url origin
替換homebrew-bottles:
首先要先區分你的mac用哪種終端工具,如果是 bash,則執行:
echo 'export homebrew_bottle_domain=' >> ~/.bash_profile source ~/.bash_profile
若是 zsh,則執行:
echo 'export homebrew_bottle_domain=' >> ~/.zshrc source ~/.zshrc
4. 基本用法
// 查詢: brew search 軟體名 // 安裝: brew install 軟體名 // 解除安裝: brew uninstall 軟體名 // 更新 homebrew: brew update // 檢視 homebrew 配置資訊: brew config
5.解除安裝homebrew
/bin/bash -c "$(curl -fssl "
mac安裝homebrew教程
mac安裝homebrew問題記錄 1 首先安裝xcode 終端輸入xcode select install 2 再次輸入ruby e curl insecure fssl 此過程會有多種報錯 1 error rpc failed curl 18 transfer closed with outst...
mac下國內安裝Homebrew教程
homebrew是一款包管理工具,目前支援macos和linux系統。主要有四個部分組成 brew homebrew core homebrew cask homebrew bottles。名稱 說明 brew homebrew 源 倉庫 homebrew core homebrew 核心源 hom...
Mac安裝解除安裝homebrew詳細教程
安裝命令 usr bin ruby e curl fssl 解除安裝命令 usr bin ruby e curl fssl 使用教程 安裝軟體 brew install 軟體名,例 brew install wget 搜尋軟體 brew search 軟體名,例 brew search wget 解...