2

このサイトのガイドを使用して Mac に Ruby をインストールしようとしてhttp://www.moncefbelyamani.com/how-to-install-xcode-homebrew-git-rvm-ruby-on-mac/ いますが、Mac 端末で次のコマンドを発行すると、次のようになります。

\curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enable

次のエラーが表示されます:

Searching for binary rubies, this might take some time.
No binary rubies available for: osx/10.8/x86_64/ruby-2.0.0-p0.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
Installing requirements for osx, might require sudo password.
Already up-to-date.
Installing required packages: autoconf, automake, libtool, pkg-config, libyaml, readline, libxml2, libxslt, libksba, openssl, sqlite................................
Error running 'requirements_brew_libs_install autoconf automake libtool pkg-config libyaml readline libxml2 libxslt libksba openssl sqlite',
please read /usr/local/rvm/log/ruby-2.0.0-p0/package_install_autoconf_automake_libtool_pkg-config_libyaml_readline_libxml2_libxslt_libksba_openssl_sqlite.log
There were package installation errors, make sure to read the log.
Check Homebrew requirements https://github.com/mxcl/homebrew/wiki/Installation

これを取り除くために多くの方法を試しましたが、まったく手がかりがありませんでした。誰でもこの問題を整理するのを手伝ってくれますか? ありがとう

4

2 に答える 2

0

私もこの問題に遭遇しました。rvm をマルチユーザー モードでインストールしたことが判明し、brew を root として実行しようとしていましたが、brew が気に入らないようです。エラーログには、次のようなものがありました。

[2013-04-04 11:40:12] requirements_brew_libs_install
Error: Cowardly refusing to `sudo brew install'
You can use brew with sudo, but only if the brew executable is owned by root.
However, this is both not recommended and completely unsupported so do so at 
your own risk.

RVM を完全にアンインストールし (sudo rvm implode)、現在のユーザー用にのみインストールしたところ、その後はスムーズに進みました。

于 2013-04-04T18:50:39.267 に答える
0

最新の Xcode を使用していることと、[Xcode 設定] -> [ダウンロード] からコマンド ライン ツールがインストールされていることを確認してください。

再インストールに問題がある場合は、次の方法で rvm をインストールします。

$ curl -L get.rvm.io | bash -s stable
于 2013-04-10T19:19:23.487 に答える