Error while installing Nokogiri (1.6.7) on El Capitan

前端 未结 8 1876
执笔经年
执笔经年 2020-12-07 16:59

One of my developers have updated Nokogiri, and when pulling the updated Gemfile my bundle install fails.

➜  my-project git:(master) bundle inst         


        
相关标签:
8条回答
  • 2020-12-07 17:25

    try to:

    apt-get install ruby-nokogiri
    bundle install
    
    0 讨论(0)
  • 2020-12-07 17:27

    Add gem "nokogiri", ">= 1.6.7.rc3" in your Gemfile

    and then run

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