1

Linux Mint 14 Mate で次のコマンドを実行しています。

rvm pkg install ree_dependencies --verify-downloads 1

そして、私はこのエラーを受け取ります:

Fetching ncurses-5.7.tar.gz to /home/john/.rvm/archives
Extracting ncurses to /home/john/.rvm/src/ncurses-5.7
Prepare ncurses in /home/john/.rvm/src/ncurses-5.7.
Error running 'autoreconf -is --force', please read /home/john/.rvm/log/ncurses/autoreconf.log
Configuring ncurses in /home/john/.rvm/src/ncurses-5.7.
Error running './configure --prefix=/home/john/.rvm/usr --with-shared --disable-rpath --without-debug --without-ada --enable-safe-sprintf --enable-sigwinch --without-progs', please read /home/john/.rvm/log/ncurses/configure.log
Compiling ncurses in /home/john/.rvm/src/ncurses-5.7.
Error running 'make', please read /home/john/.rvm/log/ncurses/make.log

ログファイルは次のとおりです。

configure:5967: error: possibly undefined macro: AC_DIVERT_HELP
    If this token and others are legitimate, please use m4_pattern_allow.
    See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1

私は解決策を探しましたが、何も得られませんでした。あなたの助けは非常に高く評価されています。

4

1 に答える 1

2

ree_dependenciesの出力を読む代わりに、rvm requirements何をインストールする必要があるかを示します。

アドバイス - REE は Ruby 1.8 に基づいていますが、これはもはやメンテナンスされていません。セキュリティ修正のみが数か月間リリースされます。1.9.3 のような新しい Ruby を実際に試すか、新しいプロジェクトの場合は Ruby 2.0.0 を試してください。プレビュー2:

rvm install ruby-2.0.0
于 2012-12-09T14:25:26.703 に答える