0

Ubuntuにaugeasをインストールしようとしています。

    sudo gem install ruby-augeas

これは私にエラーを与えます:

    Building native extensions.  This could take a while...
    ERROR:  Error installing ruby-augeas:
            ERROR: Failed to build gem native extension.

            /usr/bin/ruby1.9.1 extconf.rb
    *** extconf.rb failed ***
    Could not create Makefile due to some reason, probably lack of
    necessary libraries and/or headers.  Check the mkmf.log file for more
    details.  You may need configuration options.

    Provided configuration options:
            --with-opt-dir
            --without-opt-dir
            --with-opt-include
            --without-opt-include=${opt-dir}/include
            --with-opt-lib
            --without-opt-lib=${opt-dir}/lib
            --with-make-prog
            --without-make-prog
            --srcdir=.
            --curdir
            --ruby=/usr/bin/ruby1.9.1
            --with-augeas-config
            --without-augeas-config
            --with-pkg-config
            --without-pkg-config
    extconf.rb:27:in `<main>': augeas-devel not installed (RuntimeError)

私は持っていた

sudo apt-get install ruby1.8-dev ruby1.9.1-dev augeas-tools libaugeas-dev

ところで、mkmf.logファイルはどこにありますか?

augeasはどのようにインストールすればよいですか?これはPuppetのバージョンのRubyで使用されるため、gemを使用してインストールする必要があります。

4

1 に答える 1

2

ネイティブ拡張機能をコンパイルするには、少なくともビルドエッセンシャルパッケージが必要です。また、すべてのrubyベースライブラリがプリコンパイルされている(またはrvmにある)ことを確認してください。

rvm自体をインストールしてみてください。インストール直後に、必要なパッケージのリストが表示されます。

于 2012-10-08T23:30:51.563 に答える