Homebrew安装上的SSL问题

时间:2015-09-09 11:33:05

标签: ssl terminal homebrew osx-yosemite

当我尝试使用终端安装Homebrew时,它失败并出现以下错误:

$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
==> This script will install:
/usr/local/bin/brew
/usr/local/Library/...
/usr/local/share/man/man1/brew.1

Press RETURN to continue or any other key to abort
==> Downloading and installing Homebrew...
fatal: unable to access 'https://github.com/Homebrew/homebrew/': Could not resolve host: github.com
Failed during: git fetch origin master:refs/remotes/origin/master -n --depth=1

我认为这是因为代理设置。所以我尝试使用以下方法重置git代理:

git config --global --unset http.proxy

git config --global --unset core.gitproxy

但又失败了。

请帮忙。

1 个答案:

答案 0 :(得分:1)

您必须使用

设置git的代理
git config --global --add http.proxy proxyHost:proxyPort

但您还必须使用以下命令设置Homebrew的代理:

export ALL_PROXY=proxyHost:proxyPort