mac安装homebrew,报错curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refuse

1,检查自己的网络

在浏览器上输入其他网址,可以正常运行
在浏览器上输入raw.githubusercontent.com,连接失败
确认了不是自己的网络问题,那么就有可能是外网问题,或者局域网限制我们来看第二步

2,修改hosts文件

首先,网络连接成自己的手机热点
其次,打开hosts文件

sudo vi /etc/hosts sudo

在文件的最后加上 美国的ip和raw.githubusercontent.com

199.232.68.133  raw.githubusercontent.com

3,执行安装homebrew的命令

homebrew的官网:https://brew.sh/
mac安装homebrew,报错curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refuse_第1张图片
在终端执行安装命令即可:/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
mac安装homebrew,报错curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refuse_第2张图片

4,用brew help来检验是否安装成功

mac安装homebrew,报错curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refuse_第3张图片
如图,即安装成功

你可能感兴趣的:(brew)