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

我刚刚在一个新的Ubuntu 14.04盒子上遇到了同样的问题,结果是有一个依赖于zlib源(即zlib.h),所以你需要:

Ubuntu或Debian:

sudo apt-get install zlib1g-dev

在Fedora, CentOS或RHEL上:

sudo yum install zlib-devel

您需要安装缺失的依赖项,例如:

sudo apt-get install gcc ruby-dev libxslt-dev libxml2-dev zlib1g-dev

然后重试:

gem install nokogiri

相关内容

  • 没有找到相关文章

最新更新