web-dev-qa-db-ja.com

Rails 3.1.0およびubuntuでNokogiri 1.5.0をインストールする際のエラー

サーバーでバンドルインストールベンダー/宝石を実行しているときのエラーは次のとおりです。

Installing nokogiri (1.5.0) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /home/dtt/.rvm/rubies/Ruby-1.9.2-p290/bin/Ruby extconf.rb
checking for libxml/parser.h... no
-----
libxml2 is missing.  please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
-----
*** 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=/home/dtt/.rvm/rubies/Ruby-1.9.2-p290/bin/Ruby
        --with-zlib-dir
        --without-zlib-dir
        --with-zlib-include
        --without-zlib-include=${zlib-dir}/include
        --with-zlib-lib
        --without-zlib-lib=${zlib-dir}/lib
        --with-iconv-dir
        --without-iconv-dir
        --with-iconv-include
        --without-iconv-include=${iconv-dir}/include
        --with-iconv-lib
        --without-iconv-lib=${iconv-dir}/lib
        --with-xml2-dir
        --without-xml2-dir
        --with-xml2-include
        --without-xml2-include=${xml2-dir}/include
        --with-xml2-lib
        --without-xml2-lib=${xml2-dir}/lib
        --with-xslt-dir
        --without-xslt-dir
        --with-xslt-include
        --without-xslt-include=${xslt-dir}/include
        --with-xslt-lib
        --without-xslt-lib=${xslt-dir}/lib


Gem files will remain installed in /vol/www/emclab/releases/20111104001151/vendor/gems/Ruby/1.9.1/gems/nokogiri-1.5.0 for inspection.
Results logged to /vol/www/emclab/releases/20111104001151/vendor/gems/Ruby/1.9.1/gems/nokogiri-1.5.0/ext/nokogiri/gem_make.out
An error occured while installing nokogiri (1.5.0), and Bundler cannot continue.
Make sure that `gem install nokogiri -v '1.5.0'` succeeds before bundling.

この部分はスキップできます。エラーメッセージは説明がほとんど必要ありませんが、ウェブサイトではコードを説明する言葉がいくつか必要です。

何かご意見は?

36
user938363

必要なすべてのライブラリをマシンにインストールする必要があります。 RVMをインストールすると、これがリストされているはずです。現在のバージョンのrvmでは、rvm requirementsで正確なリストを確認してください。現在、そのリストは次のとおりです。

Sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison Subversion

62
Dylan Markow

一部のパッケージが不足しています。これを実行してみてください(Linuxのみ):

$ Sudo apt-get install libxslt-dev libxml2-dev
25
jimnah

Libxml2をインストールする必要があります。

Mac OSでは、homebrewを使用すると、次のようになります。

brew install libxml2

http://nokogiri.org/tutorials/installing_nokogiri.html を参照してください。

5
ipd

宝石依存エラーのようです。

bundle updateコマンドを実行する必要があります。依存関係を解決します:

bundle update
5
Laxman More

これを行うだけです:

Sudo apt-get install libxslt-dev libxml2-dev libxml2

次に、これをターミナル(linux)/ cmd(windows)に入力します。

export NOKOGIRI_USE_SYSTEM_LIBRARIES=true
4
user3786185

他の人がうまくいかない場合は、これを試してください。 Devtools for CentOS

0
agstwn21

このコードを使用すると、別のエラーが発生しました。

ERROR:  Error installing disposable:
    invalid gem: package is corrupt, exception while verifying: undefined method `size' for nil:NilClass (NoMethodError) in /home/admin/.rvm/gems/Ruby-2.1.3@lol/cache/nokogiri-1.6.4.1.gem

私は多くの異なる解決策を試しましたが、医学を助けました:

$ rm /home/admin/.rvm/gems/Ruby-2.1.3@lol/cache/nokogiri-1.6.4.1.gem
$ gem update
$ gem install nokogiri

役立つその他のコマンド:

Sudo apt-get install synaptic
Sudo apt-get update
Sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui
Sudo apt-get install build-essential
Sudo apt-get install "^libxcb.*" libx11-xcb-dev libglu1-mesa-dev libxrender-dev
0
Darex1991