windows rails new demo时候出错Make sure that `gem install mysql2 -v '0.3.15'` succeeds before bundling.

rails new demo --database=mysql最后报错Gem files will remain installed in D:/BillFiles/rails_dev/Ruby193/lib/ruby/gems/1.9.1/gems/mysql2-0.3.15 for inspection.Results logged to D:/BillFiles/rails_dev/Ruby193/lib/ruby/gems/1.9.1/extensions/x86-mingw32/1.9.1/mysql2-0.3.15/gem_make.outAn error occurred while installing mysql2 (0.3.15), and Bundler cannot continue.

Make sure that `gem install mysql2 -v ‘0.3.15‘` succeeds before bundling.

但是执行这句话后还是报错,这说明是驱动出问题然后看到这篇文章http://blog.mmediasys.com/2011/07/07/installing-mysql-on-windows-7-x64-and-using-ruby-with-it/最后发现自己的ruby193是32位,mysql是64位,这样ruby就连接不上了,所以下载32位的mysql驱动http://dev.mysql.com/downloads/connector/c/选择32位zip,解压后放在c盘根目录,重命名为mysql-connector-c-noinstall-6.0.2-win32
gem install mysql2 -- --with-mysql-lib="c:\mysql-connector-c-noinstall-6.0.2-win32\lib"  --with-mysql-include="c:\mysql-connector-c-noinstall-6.0.2-win32\include" --with-mysql-dir="c:\mysql-connector-c-noinstall-6.0.2-win32"

最后把其中lib目录中的
mysql-connector-c-noinstall-6.0.2-win32\lib中的libmysql.dll拷贝到ruby下面的bin目录

终于OK!
 

windows rails new demo时候出错Make sure that `gem install mysql2 -v '0.3.15'` succeeds before bundling.

时间: 2024-11-08 08:21:26

windows rails new demo时候出错Make sure that `gem install mysql2 -v '0.3.15'` succeeds before bundling.的相关文章

windows在与time.windows.com进行同步时出错

CreateTime--2017年6月29日10:28:16Author:Marydon 问题描述: windows在与time.windows.com进行同步时出错 参考地址:https://jingyan.baidu.com/article/7e440953eb6b752fc0e2effc.html 解决方案: 更换服务器 点击右下角时间-->更改日期和时间设置-->Internet时间-->更改设置-->选择其他服务器选项-->立即更新 即可.

rubygem 国内镜像 解决gem install rails 连接超时的问题

为什么有这个? 由于国内网络原因(你懂的),导致 rubygems.org 存放在 Amazon S3 上面的资源文件间歇性连接失败.所以你会与遇到 gem install rack或 bundle install 的时候半天没有响应,具体可以用 gem install rails -V 来查看执行过程. 这是一个完整 rubygems.org 镜像,你可以用此代替官方版本,同步频率目前为15分钟一次以保证尽量与官方服务同步. 如何使用? $ gem sources --remove https

配置Mysql Cluster时出错Unable to connect with connect string: nodeid=0,localhost:1186问题的解决

在执行 /etc/init.d/ndbd --initial出现下列错误 [[email protected] ~]# /etc/init.d/ndbd --initialUnable to connect with connect string: nodeid=0,localhost:1186Retrying every 5 seconds. Attempts left: 12 11 10 9 8 7 6 5 4 3 2 1, failed. 解决办法 1.查看/etc/my.cnf文件配置

Loadrunner问题:Monitor name :Windows Resources. Cannot create measurement Processor|% Processor Time|_Total on machine 192.168.0.1

说明: 在Loadrunner监控windows系统资源的时候,在添加好windows Resources后运行发现报如下错误: int: Check that there is such a measurement on this machine. Check that you selected the right platform. for the monitored machine in the Add Machine dialog box. Note: When you monitor

windows IDEA 运行WordCount程序出错

1.第一次出错告诉我  null/bin/winutis.exe 我首先感觉是环境变量的问题,可是检查系统环境变量之后发现并没有问题,随后按照网上的方法吧hadoop.dll复制到C:/Windows/System32后问题解决 2.第二次出错发现  java.lang.ClassCastException: interface javax.xml.soap.Text 原来是Text的类在编写代码的时候搞错了,导入 org.apache.hadoop.io.Text; 后问题解决 原文地址:ht

Windows 8.1 explorer.exe 出错 “Application Hang”

不知道为什么explorer常常会卡一下 看系统日志发现有来源于“Application Hang”的错误 部分常规信息: 程序 explorer.exe 版本 6.3.9600.17415 停止与 Windows 交互并关闭.要查看是否有关于该问题的详细信息,请检查操作中心控制面板中的问题历史记录. 网上发现老外也有类似情况 http://www.eightforums.com/general-support/63158-windows-8-1-explorer-exe-suddenly-cr

Windows远程桌面连接时出错,重启还是不行的处理方法。

远程桌面连接错误提示框:远程连接已断开,你的远程桌面会话已结束,可能是下列原因之一: 管理员已结束了会话. 在建立连接时发生错误. 发生网络问题. 解决办法: 1.开始--运行--regedit.exe 打开注册表,找到以下路径的文件夹HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSLicensing  把MSLicensing整个删除掉,然后重启. 2.如果还不行的的话 用下边的方法: 1)开始--运行--services.msc--Remote Desktop

rails开发demo(一)搭建环境

环境 ubuntu 14.04 为了安装rails4.2 和 ruby 2.2.2,这是目前稳定的最新版本,需要先安装rvm sudo apt-get update sudo apt-get install curl \curl -L https://get.rvm.io | bash -s stable --ruby //这一步容易报错,可能是源的原因,多试几次就会成功的,成功后就会把ruby和gem安装好 source /home/wb/.rvm/scripts/rvm //安装好rvm后提

Windows下pip安装包报错:error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat)

在Windows7x64下使用pip安装包的时候提示报错: error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat). Get it from http://aka.ms/vcpython27 原因:windows下使用pip安装包的时候需要机器装有vs2008,VS2012还不行,如果不想装VS2008的话,可以安装一个Micorsoft Visual C++ Compiler for Python 2