我在安装时收到以下错误消息,如果需要发布更多详细信息,请告诉我。
我按照以下位置的说明操作: https://github.com/oneclick/rubyinstaller/wiki/Development-Kit
我正在使用ruby 1.9.2p136(2010-12-25)[i386-mingw32]。
这是我得到的:
E:\work_desk\trunk>gem install mysql2 -v 0.2.4
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:/Ruby192/bin/ruby.exe extconf.rb
checking for rb_thread_blocking_region()... yes
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:/Ruby192/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}/lib
--with-libmysqllib
--without-libmysqllib
Gem files will remain installed in C:/Ruby192/lib/ruby/gems/1.9.1/gems/mysql2-0.
2.4 for inspection.
Results logged to C:/Ruby192/lib/ruby/gems/1.9.1/gems/mysql2-0.2.4/ext/mysql2/ge
m_make.out
答案 0 :(得分:30)
您尝试安装的mysql2 gem的特定版本(0.2.4)不仅缺少Windows的二进制文件,而且在Windows上存在问题。
请安装mysql2 gem而不指明版本:
gem install mysql2
将安装最新版本(我发布此版本时为0.2.6),并为Windows提供跳过编译步骤的二进制文件。
如果你还想强制编译(因为你的MySQL版本与用于生成二进制gem的版本不同,你需要从RubyInstaller网站安装RubyInstaller的DevKit:
http://rubyinstaller.org/downloads
然后关注我们维基中的DevKit installation instructions(从下载页面链接)
您需要在gem安装过程中提供标头和库的路径,并根据以下说明调整MySQL安装位置:
subst X: "C:\Program Files (x86)\MySQL\MySQL Server 5.1"
gem install mysql2 --platform=ruby -- --with-mysql-dir=X: --with-mysql-lib=X:\lib\opt
subst X: /D
以上命令使用subst
来避免路径与空格的问题,您应该避免总是。
希望这有帮助。
答案 1 :(得分:17)
在寻找使其工作的方法之后,我终于在命令提示符下安装了以下内容:
gem install mysql2 -v 0.2.6
得到以下结果:
Fetching: mysql2-0.2.6-x86-mingw32.gem (100%)
Successfully installed mysql2-0.2.6-x86-minw32
1 gem installed
Installing ri documentation for mysql2-0.2.6-x86-mingw32...
Enclosing class/module 'mMysql2' for class Client not known
Installing RDoc documentation for mysql2-0.2.6-x86-mingw32...
Enclosing class/module 'mMysql2' for class Client not known
试试吧。它应该工作。
答案 2 :(得分:3)
如果仍然无法在windows7上安装mysql2 gem或者没有明确的步骤,那么请仔细阅读这篇文章,这将有助于您逐步安装 - http://rorguide.blogspot.com/2011/03/installing-mysql2-gem-on-ruby-192-and.html
对于mysql_api.so错误(C:/Ruby192/lib/ruby/gems/1.9.1/gems/mysql-2.8.1-x86-mingw32/lib/1.9/mysql_api.so
),将“libmySQL.dll”文件从C:\Program Files\MySQL\MySQL Server 5.1\bin
复制到C:\Ruby192\bin
安装路径可能有所不同,有关详细信息,请参阅此帖子 - http://rorguide.blogspot.com/2011/03/getting-error-specified-module-could.html。
希望,这可以帮助您解决问题。
答案 3 :(得分:2)
从RailsInstaller开始。
这假设您在本地运行mysql服务器(本地开发),并且您的Ruby是32位编译的。 (检查ruby -v
。x64 || i386。)
下载mysql-community-web-installer。在右上角选择32位。你几乎只需要服务器。 Workbench也很方便。
gem命令需要一个没有空格的路径,所以请使用subst:
subst X: "C:\Program Files (x86)\MySQL\MySQL Server 5.6"
gem install mysql2 -v=0.3.13 --platform=ruby -- --with-mysql-dir=X:
你需要在PATH中使用libmysql.dll - 最简单的方法就是将它复制到Ruby的bin目录中:
copy "C:\Program Files (x86)\MySQL\MySQL Server 5.6\lib\libmysql.dll" "C:\RailsInstaller\Ruby2.0.0\bin"
不要从PowerShell执行此操作! (DevKit在powershell中更改路径信息时遇到问题。)
确保所有库都是32位的,因为RailsInstaller的ruby等都是32位编译的,需要链接到32位库。
如果您不想在本地使用服务器,只需安装C Connector,并对该目录和libmysql.dll执行这些说明。不要混用和匹配 - 确保.dll与您编译gem的版本匹配。
答案 4 :(得分:0)
由此:
checking for main() in -llibmysql... no
看起来您还没有安装MySQL驱动程序和应用程序。如果是这样,他们是否可以安装到默认位置?如果服务器在不同的计算机上运行,至少您需要客户端软件。
答案 5 :(得分:0)
然后重新安装宝石。
答案 6 :(得分:0)
我尝试过@Mrk Fldig的解决方案,但它没有用...... 所以解决问题的是:
gem install mysql2 --platform=ruby -- '--with-mysql-dir="C:/Program Files/MySQL/MySQL Connector C 6.1 6.1.2/"'
要注意的一个缺陷是我将反斜杠(\)更改为普通斜杠(/)。我用反斜杠尝试了相同的程序,它没有用。
安装程序已在MySQL Connector C 6.1 6.1.2
目录中包含用于MySQL的C连接器。因此,仅传递--with-mysql-dir
参数而不传递--with-mysql-lib
或--with-mysql-include
参数,会使gem查看lib
和include
目录的同一目录< / p>