在OSX 10.10 Yosemite上安装Nokogiri
我最近升级到10.10优胜美地testing版,但是我很难安装Nokogiri。 我正在使用RVM和Ruby 1.9.3。 我也按照这里的步骤,尝试按照Nokogiri的主页上的指示。
我已经通过自制程序安装了libxml2(2.9.1)和libxslt(1.1.28),并尝试使用我的Xcode 5安装和Xcode 6testing版的命令行工具。
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环境下工作,需要更新多个库和包。
我设法在优胜美地(OS X 10.10预览版)下安装Nokogiri。
第1步:安装Brew
如果安装了brew,跳过这个。
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
第2步:安装brew库
brew tap homebrew/dupes brew install libxml2 libxslt brew install libiconv
步骤3:下载并安装10.10的Apple Commandline Tools
安装后需要重新启动是非常重要的。
链接: command_line_tools_for_osx_10_10_june_2014.dmg
重新启动后,您可以检查terminal中的安装:
> xcode-select --install -> xcode-select: error: command line tools are already installed, use "Software Update" to install updates
这个错误意味着你有命令行工具安装正确。
安装Nokogiri
尝试在您的Gemfile中使用n以前的版本1.6.1,版本1.6.2.1目前与“10.10预览”有问题。 它只适用于我的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/
在优胜美地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
对于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
这对我工作:
ARCHFLAGS="-arch x86_64" gem install nokogiri -v '1.6.0'
我有与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
这终于为我工作:
sudo gem install nokogiri -- --use-system-libraries --with-xml2-include=/usr/include/libxml2 --with-xml2-lib=/usr/lib/
对于那些还没有能够在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
我没有安装macports,我的系统是一个奇怪的大杂烩。 强制每个依赖项的特定安装是我可以让Nokogiri编译的唯一方法。 超级讨厌,但至less它的作品。
来自Nokogiri网站的指令在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
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
(完整答案https://gist.github.com/chrisb/4d6a09c6cc1ca2e1b14e )
它看起来像Homebrew取决于Ruby在版本/ 1.8(即使小牛2.0船)。 在Homebrew解决这个问题之前,我们会将我们的Ruby系统版本链接到一个Homebrew寻找的。
创build文件夹:
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
这对我工作:
$ 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]
我唯一能做的就是把编译器从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
如果您使用OS X 10.10和MacPorts,则还必须安装pkgconfig:
sudo port install pkgconfig libxml2 libxslt libiconv
此外,如果您想自动使用MacPorts库而不添加configuration选项,则需要将其添加到.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
添加所有这些导出后重新启动terminal。
使用这个configuration,你可以使用下面的命令安装Nokogiri:
gem install nokogiri
我在OS X Yosemite版本10.10.5上得到了同样的错误信息
我最近做了各种操作系统更新,结果我只需要使用以下命令来接受新的xcode许可协议:
sudo xcodebuild -license
也许我在github上的post可以帮助你。 我的环境让我头痛
在我的情况下,错误消息写在下面,并相应的解决scheme。
错误信息:
... 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库的path
安装完整的Xcode。 这是唯一为我工作的旧Nokogiri版本。
对于我切换到Xcode 5,而不是使用Xcode 6的CLI工具:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/
我认为这个问题与系统Ruby没有被发现或者多个Rubies被安装有关。
- 你使用RVM来pipe理ruby吗?
-
ruby -v
的输出是什么?
那应该是find解决scheme的起点。
bad interpreter
错误与Ruby安装有关。
理想情况下,你应该从系统Ruby开始,这个系统是Xcode附带的。 所以,你会完全卸载Xcode使用:
http://osxdaily.com/2012/02/20/uninstall-xcode/
卸载brew
, rvm
并重新安装。
你试一试:
xcode-select --install
在mac os上解决“在Mac OS EI Capitan上安装时不能写/ usr / bin / nokogiri”的问题x:
sudo gem install nokogiri -n /usr/local/bin
参考: https : //www.bountysource.com/issues/28085261-can-t-write-usr-bin-nokogiri-while-installing-on-mac-os-ei-capitan
这工作:
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
资源
试试这个:
按照给定的顺序安装这些软件包:
brew install libxml2 libxslt brew link libxml2 libxslt gem install nokogiri
尝试更新gcc版本:
- 更新OSX上的GCC
- https://superuser.com/questions/517218/how-do-i-install-gcc-4-7-2-on-os-x-10-8
- 在OS X 10.9+上安装libv8 gem
- libv8(3.11.8.17)在Mac上安装捆绑软件错误