我的平台是OSX 10.7.5。 Ruby版本是 ruby 1.9.3p551(2014-11-13修订版48407)[x86_64-darwin11.4.2]
我试图安装Homebrew - 无济于事。这是我到目前为止从终端尝试的内容:
复制的命令/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
这会显示消息
-e:192: syntax error, unexpected '.', expecting $end
.map { |d| File.join(HOMEBREW_PREFIX, d) }
^
2)从SO Error when installing homebrew with ruby 我也试过(a)
ruby -e "$(curl -fsSL raw.github.com/mxcl/homebrew/go)"
并被退回
curl: (22) The requested URL returned error: 404
和(b)
/usr/bin/ruby -e "$(curl -fsSL https://github.com/mxcl/homebrew/blob/master/Library/Contributions/install_homebrew.rb)"
导致
curl: (22) The requested URL returned error: 404
(a)和(b)都返回4xx级客户端错误。
如果有人能提供帮助,我将不胜感激。
答案 0 :(得分:1)
尝试使用rvm更新ruby到2。* ...
否则,请尝试下载脚本然后单独运行:
$ curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install > brew_install.rb
$ ruby brew_install.rb