0

在过去的 3 个月里,我正面临着这个问题,我只需要一个很大的帮助。

我正在使用windows 8机器。

我试图安装rubyrails一切都成功了。

但是在安装mysqlgem 时,我可能会遇到很多错误,我在下面复制并粘贴了这些错误

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

C:/Ruby200-x64/bin/ruby.exe extconf.rb
checking for main() in -llibmysql... 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-libmysqllib
    --without-libmysqllib


 Gem files will remain installed in C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/mysql
-2.9.1 for inspection.
 Results logged to C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/mysql-2.9.1/ext/mysql_
api/gem_make.out
4

2 回答 2

1

你的意思是使用mysql宝石?我认为mysql2现在是与 mysql 数据库一起使用的标准/推荐 gem。

无论如何,此链接可能会帮助您安装它: Unable to install mysql2 gem on windows 7

于 2013-09-04T08:42:34.533 回答
1

实际上我们在安装原生扩展时应该有原生的开发库。对于ubuntu,它是libmysql2-dev,同样的方法是找到windows的dev lib并安装它。那可以解决你的问题

于 2013-09-04T07:41:40.537 回答