我最近升级到10.10优胜美地测试版,但我在安装Nokogiri时遇到了麻烦。我正在使用RVM和Ruby 1.9.3。我也按照here的步骤进行了尝试,并按照Nokogiri主页上的说明进行了尝试。
我已经通过自制软件安装了libxml2(2.9.1)和libxslt(1.1.28),并尝试使用我的Xcode 5安装和Xcode 6 beta中的命令行工具。
gem install nokogiri -v '1.5.5'
Building native extensions. This could take a while...
ERROR: Error installing nokogiri:
ERROR: Failed to build gem native extension.
/Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/bin/ruby extconf.rb
checking for libxml/parser.h... *** 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
--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=/Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/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
--with-libxslt-config
--without-libxslt-config
--with-pkg-config
--without-pkg-config
--with-libxml-2.0-config
--without-libxml-2.0-config
--with-libiconv-config
--without-libiconv-config
/Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:381:in `try_do': The compiler failed to generate an executable file. (RuntimeError)
You have to install development tools first.
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:506:in `try_cpp'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:970:in `block in find_header'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:790:in `block in checking_for'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:284:in `block (2 levels) in postpone'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:254:in `open'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:284:in `block in postpone'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:254:in `open'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:280:in `postpone'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:789:in `checking_for'
from /Users/grantdavis/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/mkmf.rb:969:in `find_header'
from extconf.rb:114:in `<main>'
任何人都知道如何解决这些安装错误?
编辑6/10/14:在OSX 10.10上尝试安装Nokogiri几天之后,我最终放弃了任务并在我的机器上恢复了10.9。需要更新几个库和包才能在10.10环境中工作。
答案 0 :(得分:79)
我设法在Yosemite(OS X 10.10预览版)下安装了Nokogiri。
如果安装了brew,请跳过此步骤。
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap homebrew/dupes
brew install libxml2 libxslt
brew install libiconv
安装后需要重启是非常重要的。
链接:command_line_tools_for_osx_10_10_june_2014.dmg
重新启动后,您可以在终端中检查安装:
> xcode-select --install
-> xcode-select: error: command line tools are already installed, use "Software Update" to install updates
此错误表示您已正确安装命令行工具。
尝试在Gemfile中使用n之前的版本1.6.1,版本1.6.2.1目前存在问题&#34; 10.10 Preview&#34;。它只适用于我的rbenv Ruby 2.0.0p247,无法在2.1.1上安装。您可以尝试对现有的Ruby版本进行几次尝试。
gem install nokogiri -v '1.6.1' -- --with-iconv-dir=/usr/local/Cellar/libiconv/1.14/
答案 1 :(得分:63)
libxml2 - 优胜美地的1.6.6.2:
sudo env ARCHFLAGS="-arch x86_64" gem install nokogiri -- --use-system-libraries -- --with-xml2-include=/usr/local/Cellar/libxml2/2.9.2/include/libxml2 --with-xml2-lib=/usr/local/Cellar/libxml2/2.9.2/lib --with-xslt-lib=/usr/local/lib --with-xslt-include=/usr/local/include
答案 2 :(得分:22)
对于Mac OS El Capitan:
gem install nokogiri -v '1.6.7.1' -- --use-system-libraries=true --with-xml2-include=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/libxml2
答案 3 :(得分:18)
这对我有用:
ARCHFLAGS="-arch x86_64" gem install nokogiri -v '1.6.0'
答案 4 :(得分:7)
我遇到了与MacPorts ruby2.1相同的问题:
can not gem install nokogiri on osx10.10 with macports ruby2.1
安装开始,cpu在100%的单核上达到50%,然后CPU下降到接近零,但iostat tps
穿过墙。
这有助于:
# port install libiconv libxslt libxml2
# gem install nokogiri -- --use-system-libraries --with-iconv-dir=/opt/local --with-xml2-dir=/opt/local --with-xslt-dir=/opt/local
答案 5 :(得分:5)
对于其他任何无法让这个人在El Capitan上工作的人来说,最终对我有用的是:
sudo gem install nokogiri -- --use-system-libraries --with-xslt-dir=/usr/local/opt/libxslt --with-iconv-dir=/usr/local/opt/libiconv --with-xml2-dir=/usr/local/opt/libxml2 --with-xml2-config=/usr/local/opt/libxml2/bin/xml2-config --with-xml2-include=/usr/local/opt/libxml2/include/libxml2 --with-xslt-config=/usr/local/opt/libxslt/bin/xslt-config
我没有安装macport,我的系统是一个奇怪的大杂烩。强制每个依赖项的特定安装是我可以让Nokogiri编译的唯一方法。超级烦人,但至少它有效。
答案 6 :(得分:5)
这最终对我有用:
sudo gem install nokogiri -- --use-system-libraries --with-xml2-include=/usr/include/libxml2 --with-xml2-lib=/usr/lib/
答案 7 :(得分:3)
来自Nokogiri website的说明在OSX 10.9和10.10上为我工作。
brew unlink gcc-4.2 # you might not need this step
gem uninstall nokogiri
xcode-select --install
gem install nokogiri
答案 8 :(得分:3)
sudo gem update --system
sudo gem install nokogiri -v '1.6.6.2' -- --use-system-libraries --with-xml2-include=/usr/include/libxml2 --with-xml2-lib=/usr/lib
答案 9 :(得分:2)
(完整答案https://gist.github.com/chrisb/4d6a09c6cc1ca2e1b14e)
看起来Homebrew在某种程度上依赖于Ruby在Versions / 1.8中(尽管甚至Mavericks都附带2.0)。在Homebrew解决这个问题之前,我们将Ruby的系统版本符号链接到Homebrew查找的内容。
创建文件夹:
sudo mkdir -p /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin
然后符号链接二进制文件:
sudo ln -s /usr/bin/ruby /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
答案 10 :(得分:2)
这对我有用:
$ brew install libxml2 libxslt # optional?
$ brew install libiconv # optional?
$ gem install nokogiri -v 1.6.8 -- --use-system-libraries --with-xml2-include=/usr/local/opt/libxml2
关于这样的环境:
$ sw_vers -productVersion
10.9.4
$ brew -v
Homebrew 0.9.9 (git revision aa747; last commit 2016-05-26)
$ gem env
RubyGems Environment:
- RUBYGEMS VERSION: 2.0.14
- RUBY VERSION: 2.0.0 (2014-02-24 patchlevel 451) [universal.x86_64-darwin13]
答案 11 :(得分:1)
如果你正在使用OS X 10.10和MacPorts,你还必须安装pkgconfig:
sudo port install pkgconfig libxml2 libxslt libiconv
此外,如果您想自动使用MacPorts库而不添加配置选项,则需要将其添加到.profile或.bashrc中:
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
export MANPATH=/opt/local/share/man:$MANPATH
export LDFLAGS="-L/opt/local/lib"
export CPPFLAGS="-I/opt/local/include"
而且你可能想要添加它来告诉Nokogiri总是使用你的系统库:
export NOKOGIRI_USE_SYSTEM_LIBRARIES=Y
添加所有这些导出后重新启动终端。
使用此配置,您可以使用以下方式安装Nokogiri:
gem install nokogiri
答案 12 :(得分:1)
我在OS X Yosemite版本10.10.5上收到了相同的错误消息
我最近做了各种操作系统更新,结果发现我只需要使用以下命令接受新的xcode许可协议:
sudo xcodebuild -license
答案 13 :(得分:1)
对我来说唯一有用的是将编译器从apple-gcc42升级到gcc48:
brew uninstall apple-gcc42
brew install gcc48 # this might take an hour or so
rvm implode
\curl -sSL https://get.rvm.io | bash -s stable # reinstall RVM
rvm install ruby-1.9.3-p551
bundle update libv8 # 3.16.14.3 doesn't work but 3.16.14.7 does
bundle
答案 14 :(得分:0)
在我的情况下,错误信息写在下面,也是相应的解决方案。
错误讯息:
...
libxml2 is missing. Please locate mkmf.log to investigate how it is failing.
...
解决方案:
gem install nokogiri -- --use-system-libraries --with-libxml2lib=/usr/local/opt/libxml2/lib/libxml2.a
我直接给它了libxml2.a
库的路径答案 15 :(得分:0)
安装完整的Xcode。对于旧的Nokogiri版本来说,这是唯一有用的东西。
答案 16 :(得分:0)
我转而使用Xcode 5而不是使用Xcode 6的CLI工具:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/
答案 17 :(得分:0)
在Mac OS El Capitan&#34;上安装时解决&#34;无法写/ usr / bin / nokogiri mac os x上的问题:
sudo gem install nokogiri -n /usr/local/bin
答案 18 :(得分:0)
我认为这个问题与系统Ruby未找到或安装了多个Rubies有关。
ruby -v
的输出是什么?这些应该是寻找解决方案的起点。
bad interpreter
错误与Ruby安装的问题有关。
理想情况下,您应该从系统Ruby开始,这是Xcode附带的系统。 因此,您将使用以下方法完全卸载Xcode:
http://osxdaily.com/2012/02/20/uninstall-xcode/
卸载brew
,rvm
并重新安装。
答案 19 :(得分:0)
试试吧:
xcode-select --install
答案 20 :(得分:0)
这有效:
gem install nokogiri -- --with-xml2-include=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/libxml2 --use-system-libraries
答案 21 :(得分:-1)
试试这个:
按给定顺序安装这些软件包:
brew install libxml2 libxslt
brew link libxml2 libxslt
gem install nokogiri
尝试更新gcc版本: