博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
install nokogiri on ubuntu在安装suspot时需要提前安装这个
阅读量:5838 次
发布时间:2019-06-18

本文共 594 字,大约阅读时间需要 1 分钟。

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 thanks

  • 1
    1
    1
    1
    1
    1
    1
    1
    1
1 answers,   votes, 1174 views
Visitor's picture
asked by Visitor
1 year 7 weeks ago



1 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

转载地址:http://dmjcx.baihongyu.com/

你可能感兴趣的文章
新开的博客,为自己祝贺一下
查看>>
采用JXL包进行EXCEL数据写入操作
查看>>
将txt文件转化为json进行操作
查看>>
我的2014-相对奢侈的生活
查看>>
Java设计模式
查看>>
华为OJ 名字美丽度
查看>>
微信公众号与APP微信第三方登录账号打通
查看>>
mysql-This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME 错误解决
查看>>
基本概念复习
查看>>
重构第10天:提取方法(Extract Method)
查看>>
通过Roslyn构建自己的C#脚本(更新版)(转)
查看>>
红黑树
查看>>
【数据库】
查看>>
WindowManager.LayoutParams 详解
查看>>
Android的Aidl安装方法
查看>>
Linux中rc的含义
查看>>
实现跨交换机VLAN间的通信
查看>>
Java基础之String,StringBuilder,StringBuffer
查看>>
安卓中数据库的搭建与使用
查看>>
AT3908 Two Integers
查看>>