mac安装homebrew显示curl: (28) Failed to connect to raw.githubusercontent.com port 443 after 75005 ms: Couldn't connect to server
时间: 2023-11-21 10:56:03 浏览: 221
mac 安装homebrew
这个错误通常是由于网络连接问题导致的。你可以尝试以下几种方法来解决这个问题:
1. 检查你的网络连接是否正常,确保你可以访问raw.githubusercontent.com网站。
2. 尝试使用代理来连接,你可以在终端中设置代理,例如:
```shell
export http_proxy=http://yourproxyaddress:proxyport
export https_proxy=https://yourproxyaddress:proxyport
```
其中,yourproxyaddress是你的代理地址,proxyport是代理端口号。
3. 如果以上方法都无法解决问题,你可以尝试使用Homebrew国内源安装脚本,命令如下:
```shell
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
```
这个脚本会将Homebrew的源替换为国内源,从而加快下载速度。
阅读全文