未找到库在OS X 10.7.4上安装RSRuby

时间:2012-12-03 15:47:53

标签: ruby r gem

我正在尝试在我的Mac上安装RSRuby。致电后:

sudo gem install rsruby

我收到此错误:

ERROR: Cannot find the R library, aborting.
*** 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
    --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=/Users/xxxxx/.rvm/rubies/ruby-1.9.3-p194/bin/ruby
    --with-R-dir
    --with-R-include
    --without-R-include=${R-dir}/include
    --with-R-lib
    --without-R-lib=${R-dir}/lib
    --with-Rlib
    --without-Rlib

我正在使用Mac OS X 10.7.4,我通过提供的.pkg安装了R.

有什么想法吗?

3 个答案:

答案 0 :(得分:3)

对于处于相同情况的任何人,请执行以下操作:

$ R_HOME=/Library/Frameworks/R.framework/Resources
$ gem install rsruby -- --with-R-dir=$R_HOME 

答案 1 :(得分:1)

我遇到了这个问题,因为我还没有在我的Mac(Yosemite)上安装R.我是用

做的
$ brew tap homebrew/science 
$ brew install gcc
$ brew install Caskroom/cask/xquartz
$ brew install r

答案 2 :(得分:0)

我正在运行OS X 10.9.4,这对我有用。

export R_HOME=/Library/Frameworks/R.framework/Resources
gem install rsruby -- --with-R-dir=$R_HOME --with-R-include=$R_HOME/include --with-R-lib=$R_HOME/lib