rails3中mysql2的安装_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > rails3中mysql2的安装

rails3中mysql2的安装

 2011/9/22 8:13:39  jsntghf  http://2015.iteye.com  我要评论(0)
  • 摘要:rails3中默认的mysql适配器是mysql2,执行以下命令进行安装:geminstallmysql2结果报出以下错误信息:ERROR:Errorinstallingmysql2:The'mysql2'nativegemrequiresinstalledbuildtools.PleaseupdateyourPATHtoincludebuildtoolsordownloadtheDevKfrom'http://rubyinstaller
  • 标签:rails rails3 安装 SQL MySQL

rails3中默认的mysql适配器是mysql2,执行以下命令进行安装:

?

gem install mysql2

?

结果报出以下错误信息:

?

ERROR:? Error installing mysql2:
??????? The 'mysql2' native gem requires installed build tools.

?

Please update your PATH to include build tools or download the DevK
from 'http://rubyinstaller.org/downloads' and follow the instructio
at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'

?

最终,通过以下命令成功安装:

?

gem install mysql2 -v 0.2.6 --platform x86-mingw32

?

注意:如果rails版本<3.1.0,就安装mysql 0.2.6,如果rails版本是3.1.*,才需要安装mysql 0.3.*。

发表评论
用户名: 匿名