更新Homebrew时遇到的问题解决方法

1.输入命令brew update,更新Homebrew,出现Error: Fetching /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core failed!出现这个原因是因为源不通,代码来不下来

2.针对上述问题,解决方法就是更换国内镜像源,及更改为中科大的国内镜像,同时把homebrew-core的镜像地址也设为中科大的国内镜像。

依次执行:

git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1

cd "$(brew --repo)"

git remote set-url origin https://mirrors.ustc.edu.cn/brew.git

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" 

git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git

执行上述之后,再执行brew update即可成功更新。

更新Homebrew时遇到的问题解决方法_第1张图片

你可能感兴趣的:(更新Homebrew时遇到的问题解决方法)