Mac上使用HomeBrew时出现github超时连接问题

Mac上使用HomeBrew时出现github超时连接问题

  • HomeBrew安装
    • 问题描述
    • 问题分析
        • 1. 可能是HomeBrew安装的问题
        • 2.可能是brew镜像仓库配置问题
    • 解决方法
        • 1.下载brew安装配置文件
        • 2.重新安装HomeBrew
        • 3.再次安装coreutils

HomeBrew安装

HomeBrew是Mac电脑上的软件包安装工具,类似linux上的yum。近期在使用brew install coreutils命令过程中,出现github超时的情况。

问题描述

curl: (7) Failed to connect to api.github.com port 443: Connection refused

Mac上使用HomeBrew时出现github超时连接问题_第1张图片

问题分析

1. 可能是HomeBrew安装的问题

2.可能是brew镜像仓库配置问题

解决方法

1.下载brew安装配置文件

     浏览器中输入: https://raw.githubusercontent.com/Homebrew/install/master/install.sh),下载install.sh文件,并命名为:brew_install.sh

2.重新安装HomeBrew

    (1) 修改brew_install.sh中的brew镜像仓库配置,设置为清华大学的仓库:
	BREW_REPOBREW_REPO="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
	(2) 重新安装homebrew
	bash brew_install.sh

3.再次安装coreutils

  (1)使用brew安装coreutils
  	brew install  coreutils

你可能感兴趣的:(Mac电脑踩坑集锦,mac,macos,运维)