2010-05-27 111 views
2

我是Ruby on Rails的新手。我很兴奋Feed解析,但是当我安装FeedZirra时,我得到这个错误。安装FeedZirra时出错

我使用Windows 7和Ruby 1.8.7。

请帮忙。提前致谢。

C:\Ruby187>gem sources -a http://gems.github.com 
http://gems.github.com added to sources 

C:\Ruby187>gem install pauldix-feedzirra 
Building native extensions. This could take a while... 
ERROR: Error installing pauldix-feedzirra: 
     ERROR: Failed to build gem native extension. 

C:/Ruby187/bin/ruby.exe 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=C:/Ruby187/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}/lib 
     --with-curllib 
     --without-curllib 
extconf.rb:12: 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 C:/Ruby187/lib/ruby/gems/1.8/gems/taf2-curb-0 
.5.4.0 for inspection. 
Results logged to C:/Ruby187/lib/ruby/gems/1.8/gems/taf2-curb-0.5.4.0/ext/gem_ma 
ke.out 

回答

3

你需要安装的libcurl为curb宝石,其中您的应用程序依赖于某个地方。你可以得到它here,但是只要安装完成,你自己就可以了。我不是Windows用户,对不起。

0

您需要安装libcurl而不是curb宝石,但是对于taf2-curb宝石,只需在错误日志中仔细查看即可。你可以在taf2-curb上找到我关于安装的答案。

1

我也遇到了Ubuntu 12.0的这个bug。以下可能会有所帮助。

sudo apt-get install libcurl3 libcurl3-dbg libcurl3-gnutls libcurl3-nss 

gem install feedzirra 

工作!

1

在Ubuntu我不得不跑

sudo apt-get install libcurl3-dev 

然后跑了创业板重新安装,并成功完成。