安装自制软件的问题

时间:2012-05-21 16:11:35

标签: ruby homebrew

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

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

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

3 个答案:

答案 0 :(得分:4)

只需导航至https://raw.github.com/gist/323731

  

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

以下是全新安装指南:https://github.com/mxcl/homebrew/wiki/Installation


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

答案 1 :(得分:0)

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

这个博客一步一步非常有用。我也经历过艰难时期。我必须在“选项1”下载原始下载的Snow leopard版本,其余的安装都没问题,除非现在我有路径错误

答案 2 :(得分: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