An error occurred while installing curb (0.8.5)

末鹿安然 提交于 2019-12-04 09:57:31

问题


While bundling an old project, this error came up:

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

    /home/dd/.rvm/rubies/ruby-2.0.0-p247/bin/ruby extconf.rb 
checking for curl-config... no
checking for main() in -lcurl... no
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/home/dd/.rvm/rubies/ruby-2.0.0-p247/bin/ruby
    --with-curl-dir
    --without-curl-dir
    --with-curl-include
    --without-curl-include=${curl-dir}/include
    --with-curl-lib
    --without-curl-lib=${curl-dir}/
    --with-curllib
    --without-curllib
extconf.rb:18:in `<main>':   Can't find libcurl or curl/curl.h (RuntimeError)

  Try passing --with-curl-dir or --with-curl-lib and --with-curl-include
  options to extconf.


Gem files will remain installed in /home/dd/.rvm/gems/ruby-2.0.0-p247/gems/curb-0.8.5 for inspection.
Results logged to /home/dd/.rvm/gems/ruby-2.0.0-p247/gems/curb-0.8.5/ext/gem_make.out

An error occurred while installing curb (0.8.5), and Bundler cannot continue.
Make sure that `gem install curb -v '0.8.5'` succeeds before bundling.

回答1:


I found the solution here

sudo apt-get install libcurl3-dev



回答2:


On CentOS

sudo yum install libcurl-devel




回答3:


It says it can't install curb gem. Go to curb homepage and check installation section:

On Ubuntu, the dependencies can be satisfied by installing the following packages:

$ sudo apt-get install libcurl3 libcurl3-gnutls libcurl4-openssl-dev

On RedHat:

$ sudo yum install ruby-devel libcurl-devel openssl-devel



来源:https://stackoverflow.com/questions/20374290/an-error-occurred-while-installing-curb-0-8-5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!