0

我正在尝试在 mac 上安装自制软件,但我不能,有这个问题。

ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"
curl: (6) Couldn't resolve host 'raw.github.com'

我该如何解决这个问题并安装。谢谢

4

3 回答 3

4

只需导航到https://raw.github.com/gist/323​​731

此脚本已被移动。 https://github.com/mxcl/homebrew/blob/master/Library/Contributions/install_homebrew.rb

这是一个全新的安装指南:https ://github.com/mxcl/homebrew/wiki/Installation


更新:现在安装说明移至:http ://brew.sh/

于 2012-05-21T16:21:18.933 回答
0

将其粘贴到终端提示符处。

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

或者帮自己一个忙并安装到 /usr/local

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

或者干脆

curl -Lsf http://github.com/mxcl/homebrew/tarball/master | tar xz --strip 1 -C /usr/local

有关详细信息,请参阅https://github.com/mxcl/homebrew/wiki/Installation 。

于 2012-09-13T06:12:15.257 回答
0

http://blog.wyeworks.com/2012/4/13/my-osx-rails-installation-using-homebrew-and-rbenv-step-by-step#comments

这个博客是相当有帮助的一步一步。我也过得很艰难。我必须在“选项1”下下载雪豹版本才能进行原始下载,其余的安装还可以,除了现在我有路径错误

于 2012-06-06T03:03:52.687 回答