What is a robust installation process for Nokogiri (on Ubuntu)?

前端 未结 5 1827
既然无缘
既然无缘 2020-12-30 13:22

I tried to install Nokogiri on my Ubuntu 12.04 system, and got an error that said \"libxslt is missing\", but the libxslt-dev and libxml2-dev

相关标签:
5条回答
  • 2020-12-30 13:48

    I have also experienced the same problem with rvm, even though I had done the following, as per documentation:

    • sudo apt-get install libxslt-dev libxml2-dev
    • rvm pkg libxml2 and rvm pkg libxslt

    The only way I could get this solved was, after a lengthy investigation:

    • Uninstall the ruby installation: rvm remove 1.9.3
    • Delete all libxslt* and libxml2* libs from ~/.rvm/usr/lib if you had previously done rvm pkg ...
    • Reinstall ruby: rvm install 1.9.3

    Reinstalling after the apt-get commands seems to be the only way of getting this to work. Also, ensuring the libs installed with rvm pkg don’t interfere helped.

    When everything else fails...

    If everything else fails and you absolutely need the gem installed, you can also rebuild nokogiri by applying a simple patch — provided that you have all build tools installed, and with the caveat that this will install the latest and potentially unstable code:

    • git clone git://github.com/sparklemotion/nokogiri
    • get patch from this gist and save it as x86_64.patch in the nokogiri folder.
    • Apply patch: patch -p1 < x86_64.patch
    • Rebuild: rake native gem — this should build the gem in the pkg/ folder
    • Install the gem using gem install pkg/nokogiri-<version>-x86_64-linux.gem
    0 讨论(0)
  • 2020-12-30 13:58

    I had to use gem install nokogiri -- --with-iconv-dir=/usr/lib/ruby/1.9.1/x86_64-linux

    0 讨论(0)
  • 2020-12-30 14:00

    I was having this issue on Ubuntu 13.04.

    I had tried everything that you find all over the place online. Making sure packages listed on the Nokogiri install page are present, etc etc.

    The only thing that eventually did it for me was installing libsxlt from source. After that everything worked perfectly.

    0 讨论(0)
  • 2020-12-30 14:02

    I'm pretty new to ruby, but this...

    gem install nokogiri -v '1.5.2' -- --with-xml2-lib=/usr/lib/i386-linux-gnu --with-xml2-include=/usr/include/libxml2 --with-xslt-lib=/usr/lib/i386-linux-gnu --with-xslt-include=/usr/include/libxslt
    

    ...worked for me on Ubuntu 12.04. (Or, anyway, it satisfied the nokogiri dependency and got me one step closer to what I'm really trying to accomplish.) I thought it might have messed up my RVM magic, but nokogirl-1.5.2 is definitely sitting there in ~/.rvm/ruby-1.9.3-p194/gems, so...maybe it's all good?

    0 讨论(0)
  • 2020-12-30 14:03
    sudo apt-get install ruby1.8-dev ruby1.8 ri1.8 rdoc1.8 irb1.8
    sudo apt-get install libreadline-ruby1.8 libruby1.8 libopenssl-ruby
    sudo apt-get install libxslt-dev libxml2-dev
    

    ?

    0 讨论(0)
提交回复
热议问题