0

Macにhomebrewをインストールしようとしていますが、できません。この問題が発生します。

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」でSnow leopardバージョンをダウンロードする必要がありましたが、パスエラーが発生した場合を除いて、残りのインストールは問題ありません。

于 2012-06-06T03:03:52.687 に答える