麻烦安装Mac Homebrew

时间:2012-09-10 16:27:06

标签: macos homebrew

我尝试了各种论坛,谷歌无济于事。我正在尝试在OS X 10.6.8上安装Mac Homebrew。当我从Homebrew主页尝试安装命令时:

ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)

我收到以下错误:

host-197-7-0-10:~ rzazueta$ ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)
==> This script will install:
/usr/local/bin/brew
/usr/local/Library/...
/usr/local/share/man/man1/brew.1

Press enter to continue
==> Downloading and Installing Homebrew...
error: The requested URL returned error: 403 while accessing https://github.com/mxcl/homebrew    /info/refs

fatal: HTTP request failed
Failed during: git fetch origin master:refs/remotes/origin/master -n

那403很奇怪。知道这里会发生什么吗?我能够在另一台Mac上使用这种方法成功安装,所以我对我的机器上的问题感到自信,但我甚至不知道从哪里开始弄清楚导致这种情况的原因。

谢谢!

7 个答案:

答案 0 :(得分:5)

检查其安装页面(https://github.com/mxcl/homebrew/wiki/Installation)并查看备用安装。

相关的一行是:

cd /usr/local/bin    
mkdir homebrew && curl -L https://github.com/mxcl/homebrew/tarball/master | tar xz --strip 1 -C homebrew

然后只是

ln -s path/to/homebrew/bin/brew /usr/local/bin/brew

我认为http://mxcl.github.com/homebrew/上列出的路径已过时。

答案 1 :(得分:3)

我在OS X 10.8.2上遇到了同样的问题。事实证明我在/ usr / local中安装了旧版本的git(1.6.5.2)。当我删除它并使用Mountain Lion(1.7.10.2)提供的版本时,正常安装工作正常。

答案 2 :(得分:2)

刚安装使用:

ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)

它没有问题。 也许这是临时问题......

答案 3 :(得分:1)

这是一个临时的Github问题。偶尔会发生这种情况。稍后再试。

答案 4 :(得分:0)

Carefull,安装脚本已从raw.github.com/mxcl/homebrew/go转移到raw.github.com/mxcl/homebrew/go/install!

答案 5 :(得分:0)

将脚本更改为

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

而不是ruby&lt;(curl -fsSkL raw.github.com/mxcl/homebrew/go)

答案 6 :(得分:0)

我已经尝试了上述所有答案,但他们没有工作。然后我发现可能链接已被破坏。我使用以下命令并成功:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"