Mac brew update卡死 和 install 总是显示 No similarly named formulae found.解决
Posted danfengw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac brew update卡死 和 install 总是显示 No similarly named formulae found.解决相关的知识,希望对你有一定的参考价值。
1、brew update 卡死问题
卡死的问题,我是参考的下面这篇文章
https://blog.csdn.net/evane1890/article/details/108795717
(1)
#更新Homebrew
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
#更新Homebrew-core
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
#更新Homebrew-cask(最重要的一步,很多更新完国内源依然卡就是没更新这个)
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
ps:如果没有homebrew-cask这个目录可以找到/usr/local/Library……下的相关目录自己创建一个即可。
(2)
zsh用户
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.zshrc
source ~/.zshrc
bash用户
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.bash_profile
source ~/.bash_profile
(3)更新一下
brew update -v
or
brew update-reset
2、brew install 总是显示No similarly named formulae found.问题
git -C $(brew --repository homebrew/core) checkout master
or
git -C $(brew --repository homebrew/core) reset --hard HEAD.
以上是关于Mac brew update卡死 和 install 总是显示 No similarly named formulae found.解决的主要内容,如果未能解决你的问题,请参考以下文章
mac在执行brew update是失败,出现error: fetching /user/local/homebrew错误,请问怎么解决?
brew update usr/local must be wrtable