之前使用VMware创建了一个MAC OS的系统,运行的也挺好。 放置几个月后,再次加载进来,brew无法使用。
image.png直接打开错误提示中的网址https://homebrew.bintray.com/bottles/libplist-2.2.0.big_sur.bottle.tar.gz
出现403错误。
在网上找啊找,终于找到了原因:Bintray 要关闭了,而新版的 Homebrew 已经去除了Bintray相关,使用 ghcr.io服务了。解决办法就是切换阿里云源:
# 替换brew.git
cd "$(brew --repo)"
git remote set-url origin https://mirrors.aliyun.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
# 刷新源
brew update
参考:
www。17wpw。com/2021/02/16/docker%E7%8E%AF%E5%A2%83%E5%AD%97%E4%BD%93%E4%B9%B1%E7%A0%81/
zhuanlan.zhihu.com/p/383707713
网友评论