devroom.io/content/posts/2009-06-05-install-hpricot-on-ubuntu.md
2019-06-05 14:32:16 +02:00

628 B

+++ date = "2009-06-05" title = "Install Hpricot on Ubuntu" tags = ["General"] slug = "install-hpricot-on-ubuntu" +++

It's quite easy. Make sure you have RubyGems and Ruby installed first, of course.

The problem:

$ sudo gem install hpricot
Building native extensions.  This could take a while...
ERROR:  Error installing hpricot:
	ERROR: Failed to build gem native extension.

/usr/bin/ruby1.8 extconf.rb
extconf.rb:1:in `require': no such file to load -- mkmf (LoadError)
	from extconf.rb:1

The solution:

sudo apt-get install ruby1.8-dev build-essential
sudo gem install hpricot