6

我无法在我的机器上安装 mysql2 gem。

我有带有最新 Xcode 的 OS X 10.8,并通过 Homebrew 安装了 mySql。所有 rubies 都使用最新的 RVM 安装。

我可以在 ruby​​ 2.0.0-p195 下很好地安装 mysql2

[~]$ rvm use 2.0.0                                                              [ruby-1.9.3-p429]
Using /Users/aselder/.rvm/gems/ruby-2.0.0-p195
[~]$ gem in mysql2                                                              [ruby-2.0.0-p195]
Fetching: mysql2-0.3.11.gem (100%)
Building native extensions.  This could take a while...
Successfully installed mysql2-0.3.11
1 gem installed

在Ruby 1.9.3和1.8.7下,找不到mysql.h文件

    [~]$ rvm use 1.9.3                                                              [ruby-1.9.3-p429]
    Using /Users/aselder/.rvm/gems/ruby-1.9.3-p429
    [~]$ gem in mysql2                                                              [ruby-1.9.3-p429]
    Fetching: mysql2-0.3.11.gem (100%)
    Building native extensions.  This could take a while...
    ERROR:  Error installing mysql2:
        ERROR: Failed to build gem native extension.

            /Users/aselder/.rvm/rubies/ruby-1.9.3-p429/bin/ruby extconf.rb
    checking for rb_thread_blocking_region()... yes
    checking for rb_wait_for_single_fd()... yes
    checking for mysql.h... no
    checking for mysql/mysql.h... no
    -----
    mysql.h is missing.  please check your installation of mysql and try again.
    -----
    *** 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/aselder/.rvm/rubies/ruby-1.9.3-p429/bin/ruby
        --with-mysql-config
        --without-mysql-config


    Gem files will remain installed in /Users/aselder/.rvm/gems/ruby-1.9.3-p429/gems/mysql2-0.3.11 for inspection.
    Results logged to /Users/aselder/.rvm/gems/ruby-1.9.3-p429/gems/mysql2-0.3.11/ext/mysql2/gem_make.out

我还尝试了各种命令行选项来让 gem 找到 mysql 安装:

例如 gem install mysql2 -- --with-mysql-config=/usr/local/opt/mysql/bin/mysql_config

4

5 回答 5

4

我找到了这个答案,它解决了我的问题: 安装 mysql2 时出错:无法构建 gem 本机扩展

报价:

在 Ubuntu/Debian 和其他使用 aptitude 的发行版上:

sudo apt-get install libmysql-ruby libmysqlclient-dev

在 Red Hat/CentOS 和其他使用 yum 的发行版上:

sudo yum install mysql-devel

在带有 Homebrew 的 Mac OS X 上:

brew install mysql

我在 debian 上,运行上述命令后,我运行:

gem install mysql2

它起作用了。

于 2013-08-29T18:08:01.887 回答
1

我解决了在启动 mysql 服务器的情况下安装 gem 的问题!

brew install mysql

mysql.server start

bundle install

在 ruby​​-1.9.3-p125 下。

希望这可以帮助

于 2013-10-18T16:13:52.240 回答
0

我通过自制软件将 mysql 从 5.6 降级到 5.5 解决了这个问题。无法提供更详细的解释,但它修复了它。

于 2013-06-26T18:42:19.370 回答
0

尝试mysql使用 Homebrew 安装,mysql2使用 Bundler 安装 gem。

brew update
brew install mysql

将以下内容添加到您的Gemfile

gem "mysql2"

跑:

bundle install
于 2013-06-25T18:29:10.577 回答
0

我对此有一个非常愚蠢的解决方案:我打开 Xcode 并接受了许可协议。更新下载了一个新版本,在手动接受新协议之前我无法编译任何东西。

于 2015-09-21T14:47:34.187 回答