How to install nokogiri on ubuntu lucid lynx 10.04?
For one of my projects i need nokogiri and i tried installing using
sudo apt-get install nokogiri and no luck. Also tried sudo gem install nokogiri How to install nokogiri so that i can continue, advance thanks1 Answers
Answer
There is a dependency issue in building nokogiri, so you need to install the xml and xslt libraries first in order to build nokogiri
sudo apt-get install libxml2 libxml2-dev libxslt1-dev sudo gem install nokogiri This worked for me