gem install ruby-odbc -v '0.99995' 无法在 ubuntu 11.10 上安装

问题描述 投票:0回答:3

安装 gem ruby-odbc -v'0.99995' 时没有收到错误。 请帮我解决这个错误。我尝试了很多事情,但没有成功。

Building native extensions.  This could take a while...
ERROR:  Error installing ruby-odbc:
    ERROR: Failed to build gem native extension.

/home/sheetal/.rvm/rubies/ruby-1.8.7-p371/bin/ruby extconf.rb
checking for version.h... yes
checking for sql.h... 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/sheetal/.rvm/rubies/ruby-1.8.7-p371/bin/ruby
    --with-odbc-dir
    --without-odbc-dir
    --with-odbc-include
    --without-odbc-include=${odbc-dir}/include
    --with-odbc-lib
    --without-odbc-lib=${odbc-dir}/lib
ERROR: sql.h not found

我正在使用 ruby 1.8.7 和rails2

ruby-on-rails ruby ruby-on-rails-3 ruby-on-rails-3.1 rubygems
3个回答
15
投票

您是否尝试过安装unix odbc开发文件?

sudo apt-get install unixodbc-dev

10
投票

如果您使用的是 OS X 并且遇到此问题,请尝试

    brew install unixodbc

那么你应该能够

    gem install ruby-odbc

0
投票

我最近遇到了类似的问题,并通过我遇到的一篇具体文章找到了解决方案。文章详细介绍了在 M1 Mac 上安装 ruby-odbc gem 的过程,可以在这里找到:如何在 M1 Mac 上安装 ruby-odbc gem。

本文的一个关键要点以及最终对我有用的一点是建议将 gem 安装定向到 unixodbc 文件夹。作者指出:

“在一位同事的帮助下,我解决了这个问题,他建议安装 gem,同时将其专门指向 unixodbc 目录。提供突破的关键命令是:

bash 复制代码 gem install ruby-odbc -- --with-odbc-dir=/opt/homebrew/Cellar/unixodbc/2.3.9 要确定 unixodbc 的确切位置,可以使用命令brew info unixodbc。这将为您提供路径和版本号。有了这些信息,您就可以调整上述命令以符合您系统的具体情况:

bash 复制代码 gem install ruby-odbc -- --with-odbc-dir=[您的unixodbc路径和版本号] 我希望这可以帮助任何面临相同或相关问题的人!

© www.soinside.com 2019 - 2024. All rights reserved.