解决在macOS下安装homebrew出现port 443: Connection refused的情况

因为疫情的原因需要在家办公,然后就给家里的MBP各种装开发软件。。。在安装homebrew的时候出现了port 443: Connection refused,如下图

然后网上各种办法都试了下,什么装redis什么改hosts的都没用,正在郁闷,看到某篇博客下面一个评论:

用手机热点就可以??
虽然看着非常不靠谱,但是我还是试了下。。。

居然。。成功了。。。

原文地址:https://www.cnblogs.com/jzl123/p/12255087.html

时间: 2024-11-05 21:38:49

解决在macOS下安装homebrew出现port 443: Connection refused的情况的相关文章

Failed to connect to raw.githubusercontent.com port 443: Connection refused

问题:macOS安装Homebrew时总是报错(Failed to connect to raw.githubusercontent.com port 443: Connection refused) 原因:由于某些你懂的因素,导致GitHub的raw.githubusercontent.com域名解析被污染了. 解决办法:通过修改hosts解决此问题. 查询真实IP 在https://www.ipaddress.com/查询raw.githubusercontent.com的真实IP. 修改h

raw.githubusercontent.com port 443: Connection refused

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused 安装过Charles证书,删除证书后一切正常 参考 https://www.v2ex.com/t/353655 原文地址:

curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused

安装brew显示:curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused 此时,我是在虚拟环境中安装的,使用网上的教程没有解决: 后来我退出了虚拟环境: ok,解决了 原文地址:https://www.cnblogs.com/Zhao159461/p/12591374.html

解决在macOS下安装了python却没有pip命令的问题【经验总结】

可以使用brew直接安装python,但是安装完成了之后没有pip命令. pip是常用的python包管理工具,类似于java的maven.第一反应brew install pip,却提示没这货. 可见,pip的安装是跟python一起的. 换种方式: sudo easy_install pip 会提示你输入密码,接着一路稍等... Password: Searching for pip Reading https://pypi.python.org/simple/pip/ 原文地址:https

MACOS下安装phpredis扩展

环境:OS X 10.9.5 +mac系统自带的Apache.PHP5.4.30 开始安装: curl -O https://nodeload.github.com/nicolasff/phpredis/zip/master tar -zxf master cd phpredis-master/ phpize ./configure --with-php-config=/usr/bin/php-config make sudo make install # 这时候会提示一个路径 # /usr/l

MAC下安装Homebrew 和 @权限的问题

MAC下安装Homebrew和 @权限的问题 1.Homebrew简介: Homebrew是一个包管理器,用于安装Apple没有预装但你需要的UNIX工具.(比如著名的wget). Homebrew会将软件包安装到独立目录(/usr/local/Cellar),并将其文件软链接至/usr/local. Homebrew不会将文件安装到它本身目录之外,所以您可将Homebrew安装到任意位置. Homebrew使macOS更完整.使用gem来安装gems.用brew来安装那些依赖包. 安装: /u

解决Virtual Box 下安装Mac OS X时出现的“hfs: summary table not allowed on FS with block size of 2048”问题

安装的时候首先出现 hfs: summary table not allowed on FS withblock size of 2048 错误,然后就是 hfs: could not initializc summary table forOSX Base System 错误. 一开始也不知道是怎么回事,后来在yandex上搜索中找到一篇帖子,它说这是CPU的问题.Mac OS X 10.9不能识别特有的CPU格式,只能识别一部分.于是呢,按照帖子中的做法,首先找到Virtual Box的位置

如何解决英文系统下安装中文软件显示乱码问题?

如何解决英文系统下安装中文软件显示乱码问题? ?Lander Zhang 专注外企按需IT运维服务,IT Helpdesk 实战培训践行者博客:https://blog.51cto.com/landerIT Helpdesk 工程师实战培训课程:https://edu.51cto.com/lecturer/733218.html轻松进外企:IT Helpdesk工程师实战自学之路:https://blog.51cto.com/lander/2413018更新时间:2019/10/28 故障描述

Ubuntu下 ssh : connect to host localhost port 22:Connection refused

Ubuntu下测试ssh时使用ssh localhost 命令,出现错误提示connect to host localhost port 22:Connection refused 造成这个错误的原因可能是ssh-server未安装或者未启动.ubuntu 11.10 默认安装openssh-client,但是木有安装server 运行 ps -e | grep ssh,查看是否有sshd进程 如果没有,说明server没启动,通过 /etc/init.d/ssh -start 启动server