MAC OS 安裝homebrew速度慢的問題

2021-09-28 20:51:41 字數 933 閱讀 1070

解決安裝homebrew國內安裝慢問題

一、獲取 install 檔案,把官網給的指令碼拿下來

curl -fssl >> brew_install

brew_repo = 「

core_tap_repo = 「有的版本不存在)

更改為這兩句

brew_repo = "".freeze

core_tap_repo = "".freeze(不存在就不管)

也可以換成別家的。

/usr/bin/ruby brew_install

等待最後執行安裝完成。

如果出現如下問題

error: failure while executing: git clone /usr/local/homebrew/library/taps/homebrew/homebrew-core --depth=1

error: failure while executing: /usr/local/bin/brew tap homebrew/core

是因為源的問題,需要更換git的源。

————————————————

git clone git: /usr/local/homebrew/library/taps/homebrew/homebrew-core --depth=1

cd "$(brew --repo)"

git remote set-url origin

cd "$(brew --repo)/library/taps/homebrew/homebrew-core"

git remote set-url origin

cd "$(brew --repo)/library/taps/homebrew/homebrew-cask"

git remote set-url origin

設定完,執行brew update 更新

MAC OS 使用 homebrew 安裝 git

開啟終端執行以下命令 usr bin ruby e curl fssl 安裝的過程中會彈出 press return to continue or any other key to abort 按回車繼續安裝,任意鍵終止。安裝完成後可以通過以下命令檢查是否安裝成功,及檢視版本號 brew versi...

MacOS 安裝 Homebrew失敗解決辦法

usr bin ruby e curl fssl 出現如下的錯誤 fatal unable to access failed to connect to github.com port 443 operation timed out 解決辦法 在終端輸入 export all proxy socks...

MacOS 映象飛速安裝Homebrew教程

homebrew是一款包管理工具,目前支援macos和linux系統。主要有四個部分組成 brew homebrew core homebrew cask homebrew bottles。名稱說明 brew homebrew 源 倉庫 homebrew core homebrew 核心源 home...