web-dev-qa-db-ja.com

nokogiriがアップグレードに失敗しました

誰かこれを見た?

gem update nokogiri
Updating installed gems
Updating nokogiri
Building native extensions.  This could take a while...
ERROR:  Error installing nokogiri:
ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/Ruby -r ./siteconf20150524-28193-cqkmxr.rb extconf.rb
checking if the C compiler accepts ... yes
checking if the C compiler accepts -Wno-error=unused-command-line-argument-hard-error-in-future... no
Building nokogiri using packaged libraries.
checking for gzdopen() in -lz... no
zlib is missing; necessary for building libxml2
*** 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=/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/Ruby
        --help
        --clean
        --use-system-libraries
        --enable-static
        --disable-static
25
smcracraft

新しいUbuntu14.04ボックスでこれと同じ問題が発生しましたが、zlibソース(つまりzlib.h)に依存関係があることが判明したため、次のことを行う必要があります。

UbuntuまたはDebianの場合:

Sudo apt-get install zlib1g-dev

Fedora、CentOS、またはRHELの場合:

Sudo yum install zlib-devel

または、ご使用のオペレーティングシステムに相当するパッケージを見つけてください。

52
Michael M

不足している依存関係をインストールする必要があります。例:

Sudo apt-get install gcc Ruby-dev libxslt-dev libxml2-dev zlib1g-dev

その後、再試行してください。

gem install nokogiri
7
Edson Villar