homebrew下载wget时Error: Failure while executing; `/usr/bin/env /opt/homebrew/Library/Homebrew/shims/shared/curl --disable --cookie /dev/null --globoff --show-error --user-agent Homebrew/4.0.20\ \(Macintosh\;\ arm64\ Mac\ OS\ X\ 13.0\)\ curl/7.84.0 --header Accept-Language:\ en --retry 3 --fail --location --silent --head --request GET https://mirrors.aliyun.com/homebrew/homebrew-bottles/openssl\%403-3.1.1.arm64_ventura.bottle.tar.gz` exited with 22. Here's the output: curl: (22) The requested URL returned error: 404
时间: 2023-12-11 07:03:51 浏览: 401
HomeBrew 下载时出现 404 错误
5星 · 资源好评率100%
这个错误信息表明 Homebrew 在尝试下载 openssl@3 的 bottle 文件时出现了问题,可能是因为该文件不存在或者下载链接不正确。您可以尝试更新 Homebrew,并重新运行命令来解决该问题。可以使用以下命令来更新 Homebrew:
```
brew update
```
如果更新 Homebrew 后仍然出现相同的错误,请检查您的网络连接,并确保您的 Homebrew 源是可用的。您也可以尝试更改 Homebrew 的源,例如使用清华大学的源:
```
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
brew update
```
这可能会解决下载问题。
阅读全文