本文主要是介绍mac 安装homebrew出错 Failed to connect to raw.githubusercontent.com port 443: Connection refused error:,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
开始一直报错Failed to connect to raw.githubusercontent.com port 443: Connection refused error: Error: 7,
尝试过改动git config的代理,没有用,
换中科大的源,也没有用
最后解决办法如下,重装command line tools,再执行安装指令,homebrew安装成功。
removing the old tools ($ rm -rf /Library/Developer/CommandLineTools)
install xcode command line tools again ($ xcode-select --install).
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
方法二
问题:macOS安装Homebrew时总是报错(Failed to connect to raw.githubusercontent.com port 443: Connection refused)
原因:由于某些你懂的因素
,导致GitHub的raw.githubusercontent.com
域名解析被污染了。
解决办法:通过修改hosts
解决此问题。
查询真实IP
在The Best IP Address, Email and Networking Tools - IPAddress.com查询raw.githubusercontent.com的真实IP。
修改hosts
sudo vim /etc/hosts
添加如下内容:
199.232.28.133 raw.githubusercontent.com
可以使用国内源啦 再也不痛苦啦
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
转自:mac 安装homebrew出错 Failed to connect to raw.githubusercontent.com port 443: Connection refused error:_heroacool的专栏-CSDN博客
这篇关于mac 安装homebrew出错 Failed to connect to raw.githubusercontent.com port 443: Connection refused error:的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!