Homebrew brew update 长时间没反应(或卡在 Updating Homebrew...)

简介: Homebrew brew update 长时间没反应(或卡在 Updating Homebrew...)

一、问题简介

  • Mac Homebrew 安装与卸载
  • 有时候在 brew updatebrew install xxx … 命令的时候会长时间没反应或者卡在 Updating Homebrew...
  • 原因是:由于我们安装的 brew 默认 repo 是官方的 repo,出于国内特殊原因无法连接,所以使用 AlibabaHomebrew 镜像源进行加速后问题就能解决。
  • 平时我们执行 brew 命令安装软件的时候,跟下面 3 个仓库地址有关:
brew.git
homebrew-core.git
homebrew-bottles

二、解决办法(按步骤依次替换下去,后续可还原)

  • 替换 brew.git 仓库地址
$ cd "$(brew --repo)"
$ git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
  • 还原:
$ cd "$(brew --repo)"
$ git remote set-url origin https://github.com/Homebrew/brew.git
  • 替换 homebrew-core.git 仓库地址:
$ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
$ git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
  • 还原:
$ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
$ git remote set-url origin https://github.com/Homebrew/homebrew-core.git
  • 替换 homebrew-bottles 访问地址:
    1、这个步骤跟 macOS 系统使用的 shell 版本有关系,先查看 shell 版本
$ echo $SHELL
会输出 
/bin/zsh
/bin/bash
  • 2、如果输出 /bin/zsh,访问地址换成这个:
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
$ source ~/.zshrc
  • 还原:
$ vi ~/.zshrc
# 然后,删除 HOMEBREW_BOTTLE_DOMAIN 这一行配置
$ source ~/.zshrc
  • 3、如果输出 /bin/bash,访问地址换成这个:
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
$ source ~/.bash_profile
  • 还原:
$ vi ~/.bash_profile
# 然后,删除 HOMEBREW_BOTTLE_DOMAIN 这一行配置
$ source ~/.bash_profile
  • 配置到这里就结束了,可以再次执行
$ brew update
  • 如果正常运行,可以不用往下看了!!
  • 如果不行,就继续看:
$ brew doctor
# 输出如下的错误信息
/usr/local/Homebrew/Library/Homebrew/global.rb:12:in `require': cannot load such file -- active_support/core_ext/object/blank (LoadError)
    from /usr/local/Homebrew/Library/Homebrew/global.rb:12:in `<top (required)>'
    from /usr/local/Homebrew/Library/Homebrew/brew.rb:23:in `require_relative'
    from /usr/local/Homebrew/Library/Homebrew/brew.rb:23:in `<main>'
  • 无论报什么错误,先不管,执行以下命令
$ brew update-reset
  • 等待更新完成之后,再次执行
$ brew update
  • 如果正常运行,可以不用往下看了!!
  • 如果报错 homebrew-core is a shallow clone.
Error: 
  homebrew-core is a shallow clone.
To `brew update`, first run:
  git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
This command may take a few minutes to run due to the large size of the repository.
This restriction has been made on GitHub's request because updating shallow
clones is an extremely expensive operation due to the tree layout and traffic of
Homebrew/homebrew-core and Homebrew/homebrew-cask. We don't do this for you
automatically to avoid repeatedly performing an expensive unshallow operation in
CI systems (which should instead be fixed to not use shallow clones). Sorry for
the inconvenience!
  • 删除 homebrew-core 后更新即可
$ cd /usr/local/Homebrew/Library/Taps/homebrew
$ rm -rf homebrew-core
$ brew upgrade
  • 使用 $ brew upgrade 后会重新更新 homebrew-core
  • 如果 $ brew upgrade 安装速度太慢,直接 control + c 停下来,按下面的方式进行安装
// 进入 Taps 文件夹
$ cd /usr/local/Homebrew/Library/Taps
// 新建 homebrew 文件并进入,如果有这个文件可以直接进入
$ mkdir homebrew && cd homebrew
$ cd homebrew
// Git 下载
$ git clone git://mirrors.ustc.edu.cn/homebrew-core.git
  • 成功之后,执行安装命令,中途需要回车确认:
$ /bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install.sh)"
  • 最后看到 ==> Installation successful! 就说明安装成功了。
    最后可以在更新一下,一般现在已经是最新版本了,然后就可以通过 brew 进行安装工具了。
$ brew update
  • 基本到这就搞定了!!!配置完后再去安装下某些工具和 module 时就能发现畅快无比了!!
    附带:Mac 下镜像飞速安装 Homebrew 教程,这篇文章中有其他的镜像源可供选择!

相关文章
|
6月前
|
存储 Ubuntu Linux
sudo apt update和sudo apt upgrade有啥区别
【4月更文挑战第1天】
1662 4
|
Docker 容器
尝试添加 --skip-broken 来跳过无法安装的软件包 或 --nobest 来不只使用最佳选择的软件包
尝试添加 --skip-broken 来跳过无法安装的软件包 或 --nobest 来不只使用最佳选择的软件包
1444 0
尝试添加 --skip-broken 来跳过无法安装的软件包 或 --nobest 来不只使用最佳选择的软件包
|
6月前
|
Linux 开发工具 Windows
kali修改apt安装的源为国内源,提升访问速度,以及apt update ,apt upgrade和apt dist-upgrade的区别
kali修改apt安装的源为国内源,提升访问速度,以及apt update ,apt upgrade和apt dist-upgrade的区别
|
6月前
|
缓存 Ubuntu 搜索推荐
Ubuntu执行apt-get install xxx报错怎么办?
如果以上步骤无法解决问题,你可以在搜索引擎或Linux社区中查找更详细的解决方案。 买CN2云服务器,免备案服务器,高防服务器,就选蓝易云。百度搜索:蓝易云
80 0
|
Ubuntu 安全
ubuntu sudo apt-get upgrade 和 sudo apt-get dist-upgrade区别
ubuntu sudo apt-get upgrade 和 sudo apt-get dist-upgrade区别
|
Ubuntu PHP
apt-get update && apt-get upgrade
apt-get update && apt-get upgrade
181 1
|
存储 安全 Ubuntu
Linux `sudo apt update`和`sudo apt upgrade`命令的作用和使用方法
Linux `sudo apt update`和`sudo apt upgrade`命令的作用和使用方法
772 0
Linux `sudo apt update`和`sudo apt upgrade`命令的作用和使用方法
Mac brew 卡在 ‘Cloning into ‘.../homebrew-core(或 homebrew-cas)‘
Mac brew 卡在 ‘Cloning into ‘.../homebrew-core(或 homebrew-cas)‘
202 0
|
Ubuntu 开发工具 git
apt install git:Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/g/git/git-man_2.17.1-1ubuntu0.11_all.deb 404 Not Found [IP: 91.189.91.39 80]
350 0
apt install git:Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
|
Ubuntu 网络安全 开发工具
Ubuntu E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? 错误
Ubuntu E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? 错误
848 0