Problems installing gsl gem

后端 未结 10 698
傲寒
傲寒 2020-12-15 05:12

I can succesfully install the gsl library in my home directory, but when I try to install the gsl gem I get a big list of errors that I do not understand. I am wondering if

10条回答
  •  -上瘾入骨i
    2020-12-15 05:46

    If you have:

    • GSL 1.16 (check with gsl-config --version) (e.g. in Ubuntu 14.04),
    • Ruby 2.1

    Then try https://github.com/siefca/rb-gsl -- it's tweaked for such configuration.
    It should also work with Ruby 1.9 and Ruby 2.0.

    If you're using bundler to manage gems in a project then put a line in your Gemfile:

    gem 'gsl', :git => 'git://github.com/siefca/rb-gsl'
    

    Cheers!

提交回复
热议问题