微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby – 为什么我可以在Windows 7中编译和安装Nokogiri,但不能要求它?

我正在尝试在64位PC上使用64位版本的 Windows,Ruby 2.0.0和DevKit在Windows 7上使用Nokogiri.我刚刚从 ftp://ftp.zlatkovic.com/libxml/64bit/安装了xml2 / xslt / iconv / zlib库,并将include / libxml2 / libxml移动到include / libxml;我想我可以调整一下–with-xml2-include),然后安装Nokogiri.它似乎构建了本机扩展很好.

当我试图要求Nokogiri时,我得到:

C:/Users/echristopherson/Development/Ruby/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in
`require':LoadError: 126: The specified module Could not be found.   -
C:/Users/echristopherson/Development/Ruby/lib/ruby/gems/2.0.0/gems/nokogiri-1.5.9/lib/nokogiri/nokogiri.so

当我检查文件类型时:

file C:/Users/echristopherson/Development/Ruby/lib/ruby/gems/2.0.0/gems/nokogiri-1.5.9/lib/nokogiri/nokogiri.so

输出

PE32+ executable for MS Windows (DLL) (console) Mono /.Net assembly.

我究竟做错了什么?我用gem install –pre nokogiri得到了相同的结果….

解决方法

根据您的输出,我看到您正在使用Ruby 2.0.0. Nokogiri在Windows x64上还没有支持Ruby 2.0.0;根据 Nokogiri issue 864,这是由于 rake-compiler’s current inability (as of May 7,2013) to target the x64-mingw32 platform.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐