homebrew Failed to connect to raw.githubusercontent.com port 443 after 7 ms: Couldn't connect to server
时间: 2023-11-21 17:56:01 浏览: 256
解决 github项目clone报错 Failed connect to github.com:443; 解决
5星 · 资源好评率100%
这个问题通常是由于网络连接问题导致的。以下是一些可能的解决方案:
1. 检查网络连接是否正常,确保您可以访问互联网。
2. 检查您的防火墙设置,确保它们不会阻止Homebrew连接到GitHub。
3. 尝试使用以下命令更新Homebrew:
```shell
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```
4. 尝试使用以下命令更改Homebrew的Git源:
```shell
git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git
```
5. 如果上述方法都无法解决问题,您可以尝试重新安装Command Line Tools:
```shell
xcode-select --install
```
然后再次尝试使用Homebrew。
阅读全文