我遇到一些问题需要在我的Windows 8.1机器上安装mysql2 gem。我按照这篇文章中的说明进行了操作:
安装mysql2
gem,我没有收到任何错误消息。
我用
跟着这个bundle install
命令,并确认安装了以下gem(使用bundle show),确认我安装了以下gem:
Using devise (3.2.2)
Using mysql2 (0.3.14)
然后我尝试了:
rails generate devise:install
这就是我得到的:
C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/mysql2-0.3.14/lib/mysql2.rb:8:in `require': 126: The specified module could not be found.
- C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/mysql2-0.3.14/lib/mysql2/mysql2.so (LoadError)
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/mysql2-0.3.14/lib/mysql2.rb:8:in `<top (required)>'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/runtime.rb:76:in `require'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/runtime.rb:76:in `block (2 levels) in require'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/runtime.rb:72:in `each'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/runtime.rb:72:in `block in require'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/runtime.rb:61:in `each'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/runtime.rb:61:in `require'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/bundler-1.5.1/lib/bundler.rb:131:in `require'
from C:/Users/Joseph/googledrive/projects/rails/test_new_devise/config/application.rb:7:in `<top (required)>'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/railties-4.0.2/lib/rails/commands.rb:43:in `require'
from C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/railties-4.0.2/lib/rails/commands.rb:43:in `<top (required)>'
from bin/rails:4:in `require'
from bin/rails:4:in `<main>'
有什么想法吗?
答案是来自stackoverflow和修改的两个答案的组合。 stackoverflow引用是:
Ruby MYSQL2 gem installation on windows 7 ...mysql2/mysql2.so: [BUG] Segmentation fault ruby 2.0.0p247
结论:要在Windows 8.1上使用Ruby 2在64位环境中运行mysql2,您需要执行以下操作:
清理:你在这里的原因是你可能在尝试 安装这个gem,它已经失败,所以你有一些清理 do:gem uninstall mysql2
下载适用于Windows的Ruby 2.0 64位:
http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p353-x64.exe?direct
运行安装程序。记下它安装到的目录,并确保它在用户路径中。转到
Control Panel > System and Security > System - Advanced System Settings > Environment Variables
并确保ruby安装目录的bin目录的路径在LOCAL用户的PATH环境变量中(如果它在SYSTEM Path环境变量中也可以)
http://cdn.rubyinstaller.org/archives/devkits/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe
运行安装程序并记下安装目录的位置。说明说,一旦完成安装,您需要运行devkitvars.bat文件来设置环境变量。这不适用于Windows 8.1。您需要重复说明以设置上面#2中描述的本地路径,为本地用户设置路径环境变量以添加ruby dev kit bin目录和ruby dev kit mingw bin目录。例如,如果开发工具包安装到c:\ ruby2devkit,并且您将ruby2安装到C:\ Ruby200-x64目录,那么您编辑路径语句如下所示:
C:\Ruby200-x64\bin;C:\ruby2-devkit\bin;c:\ruby2-devkit\mingw\bin
接下来你需要安装mysql-connector。请勿下载并运行自安装程序。而是,下载zip文件并解压缩。请注意您解压缩到的目录(出于本文的目的,我们假设您将其解压缩到c:\ mysql-connector:
MySQL Connector 64位中包含的libmysql.lib与mingw64-gcc编译器不兼容。您需要生成与mingw64兼容的libmysql.lib文件。
下载您需要的工具
https://structure-svm-map.googlecode.com/files/svm-map-win.zip
将此文件解压缩到本地目录,我们假设您已将其解压缩到c:\ svm-map
如前所述,编辑PATH环境路径,现在看起来像这样:
C:\Ruby200-x64\bin;C:\ruby2-devkit\bin;c:\ruby2-devkit\mingw\bin;c:\svm-map;C:\svm-map\python-mingw-lib
生成新的mysql库:
(make sure you're running as administrator)
cd c:\mysql-connector\lib
gendef.exe libmysql.dll
dlltool -v --dllname libmysql.dll --def libmysql.def --output-lib libmysql.lib
copy libmysql.dll C:\Ruby200-x64\bin
copy libmysql.lib C:\Ruby200-x64\bin
按如下方式安装gem(注意使用正斜杠而不是反斜杠,如果使用反斜杠则会失败):
gem install mysql2 --platform = ruby - ' - with-mysql-dir =“C:/ mysql-connector /”'
希望这会有所帮助,希望有人会关注那些想要进行Ruby on Rails开发的少数Windows 8.1用户。
答案 0 :(得分:1)
安装mysql2
时,是否下载了所需的lib文件?
我没有在Windows 8上安装它,但是Windows 7需要this file来为mysql提供依赖关系所需的帮助它。关于如何执行此操作,您可以看到various tutorials,我将在此概述一个简单的概述:
- 解压缩mysql connector file :
C:\mysql-connector-c-6.1.3-win32\
(或类似的路径,没有任何空格)
- 再次运行mysql2
gem安装程序:
gem uninstall mydsql
gem install mysql2 --platform=ruby -- '--with-mysql-lib="C:\mysql-connector\lib" --with-mysql-include="C:\mysql-connector\include" --with-mysql-dir="C:\mysql-connector"'
底线是我认为你的mysql2
gem没有加载运行所需的文件,并且可能没有显示错误,因为它是Windows 8
答案 1 :(得分:1)
我希望这对尝试在 Windows 10 机器上使用 MariaDB 安装 mysql2 有所帮助。
由于某种原因,我在尝试使用连接器库时遇到了很多问题。此外,我可以下载的库是第 6 版,而我使用的 MariaDB 版本使用的是第 10 版的库。
我首先下载并安装了 MariaDB。
我使用了命令
gem install mysql2 --platform=ruby -- --with-mysql-lib="path_to:\MariaDB 10.5\"
这编译并安装了 gem,没有任何问题。
在database.yml中
默认:&默认 适配器:mysql2 编码:utf8 重新连接:假 数据库:DBname 池:5 用户名:DBuser 密码:DBpassword 套接字:tmp/mysql.sock