Require Nokogiri? No such file to load

吃可爱长大的小学妹 提交于 2019-12-07 00:28:27

问题


I'm trying to get started with using Nokogiri. I ran the command

gem install nokogiri

as an administrator in Windows 7 (64-Bit). The console said "successfully installed" and "1 gem installed".

When I type in

gem list --local OR gem q --local

I see Nokogiri on the list of "Local Gems".

However, when I try to use it via the require statement (in NetBeans), I get an error that there is "no such file to load".

What am I doing wrong? I'm not a Ruby professional. This is also the first gem I've installed. Please dumb it down for me.


回答1:


Netbeans comes with built-in jRuby.

You can specify or check wich version of ruby currently used in your project in project's properties (higlighted section).




回答2:


With Ruby 1.8, you have to require 'rubygems' before requiring any libraries installed as gems. With Ruby 1.9, that is not necessary anymore.

require 'rubygems'
require 'nokogiri'
...



回答3:


I realize this post is pretty old, but others may stumble here with the same problem, as I did. Novices like me may not realize that

require 'rubygems' 

must precede

require 'nokogiri'

At least, based on another URL post that gave me the idea, the addition of that line solved the problem for me with nokogiri.




回答4:


I was struggling with this one for a while, having upgraded to ruby 2.0.

The fix was to install nokigiri using apt-get

apt-get install ruby-nokogiri

As a side note dependencies can be seen using

$ gem dependency nokogiri

Gem nokogiri-1.6.1
  hoe (~> 3.7, development)
  hoe-bundler (>= 1.1, development)
  hoe-debugging (>= 1.0.3, development)
  hoe-gemspec (>= 1.0, development)
  hoe-git (>= 1.4, development)
  mini_portile (~> 0.5.0)
  minitest (~> 2.2.2, development)
  racc (>= 1.4.6, development)
  rake (>= 0.9, development)
  rake-compiler (~> 0.8.0, development)
  rdoc (~> 4.0, development)
  rexical (>= 1.0.5, development)


来源:https://stackoverflow.com/questions/5496018/require-nokogiri-no-such-file-to-load

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!