【问题标题】:Error installing mysql2 gem ( windows 8 )安装 mysql2 gem 时出错(Windows 8)
【发布时间】:2013-11-19 16:21:17
【问题描述】:

我目前正在尝试在 Windows 8 平台上安装 mysql2 gem。我已经安装了 mysql_connector 并使用了下面的代码。但似乎仍然遇到同样的错误。我应该采取什么步骤来解决这个问题。

  C:\Users\Samuel>gem install mysql2
  Temporarily enhancing PATH to include DevKit...
  Building native extensions.  This could take a while...
  ERROR:  Error installing mysql2:
    ERROR: Failed to build gem native extension.

 C:/Ruby200-x64/bin/ruby.exe extconf.rb
 checking for ruby/thread.h... yes
 checking for rb_thread_call_without_gvl() in ruby/thread.h... yes
 checking for rb_thread_blocking_region()... yes
 checking for rb_wait_for_single_fd()... yes
 checking for rb_hash_dup()... yes
 checking for rb_intern3()... yes
 checking for mysql_query() in -lmysqlclient... no
 checking for main() in -lm... yes
 checking for mysql_query() in -lmysqlclient... no
 checking for main() in -lz... no
 checking for mysql_query() in -lmysqlclient... no
 checking for main() in -lsocket... no
 checking for mysql_query() in -lmysqlclient... no
 checking for main() in -lnsl... no
 checking for mysql_query() in -lmysqlclient... no
 checking for main() in -lmygcc... no
 checking for mysql_query() in -lmysqlclient... 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:/Ruby200-x64/bin/ruby
    --with-mysql-dir
    --without-mysql-dir
    --with-mysql-include
    --without-mysql-include=${mysql-dir}/include
    --with-mysql-lib
    --without-mysql-lib=${mysql-dir}/
    --with-mysql-config
    --without-mysql-config
    --with-mysql-dir
    --without-mysql-dir
    --with-mysql-include
    --without-mysql-include=${mysql-dir}/include
    --with-mysql-lib
    --without-mysql-lib=${mysql-dir}/
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-mlib
    --without-mlib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-zlib
    --without-zlib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-socketlib
    --without-socketlib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-nsllib
    --without-nsllib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-mygcclib
    --without-mygcclib
    --with-mysqlclientlib
    --without-mysqlclientlib

 Gem files will remain installed in C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/mysql
 2-0.3.14 for inspection.
 Results logged to C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/mysql2-0.3.14/ext/mysq
 l2/gem_make.out

【问题讨论】:

    标签: mysql gem installation


    【解决方案1】:

    here 下载连接器的 32 位 Zip 存档。然后将其复制到您的 C 盘根目录以便于访问,以便您的连接器文件夹路径将是这样的

    C:\mysql-connector-c-6.1.3-win32\
    

    现在将这行代码复制到你的 cmd 并执行(记得用你的连接器版本号更改)

    gem install mysql2 --platform=ruby -- '--with-mysql-dir="C:/mysql-connector-c-6.1.3-win32/"'
    

    经过长时间的尝试,我以这种方式在我的 32 位和 64 位 windows 7 中都成功安装了 mysql2 gem。干杯!

    【讨论】:

    • 酷,我试试看。谢谢
    • 你是最棒的。
    【解决方案2】:

    我一直在使用 Windows 7 并遇到类似的错误,最终使用 mysql gem 而不是 mysql2。除此之外,许多错误不断上升。这让我转向了 linux,之后就没有这样的问题困扰我了。

    我用windows做了一整天的凶猛尝试,包括mysql2 fem,但结果并不好。如果您真的很想解决问题,请浏览这些链接(link1link2)。也许你会发现一些有用的东西。

    【讨论】:

      【解决方案3】:

      这就是我在 Windows 8 上安装 mysql2 gem 的方式。

      c:\DevKit>gem install mysql2 --platform=ruby -- '--with-mysql-dir="C:\Ruby193\my
      sql-connector-c-6.1.3-win32/"'
      

      【讨论】:

        猜你喜欢
        • 2011-09-11
        • 2011-08-09
        • 2014-04-16
        • 1970-01-01
        • 2013-04-24
        • 1970-01-01
        • 2011-04-14
        • 1970-01-01
        • 2014-02-03
        相关资源
        最近更新 更多