32

我是一名 Rails 初学者,我从https://github.com/rubytaiwan/jobs.ruby.tw获得了一个演示

但是当我尝试运行这个演示时,我得到了一个错误。

我跟着跑

bundle

我得到了错误

An error occurred while installing mysql2 (0.3.11), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.3.11'` succeeds before bundling.

但我可以确定我已经安装了 mysql2

而且Gemfile

source 'https://rubygems.org'
ruby "1.9.3"

gem 'rails', '~> 3.2.12'

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  gem 'therubyracer', :platforms => :ruby

  gem 'uglifier', '>= 1.0.3'
end

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'devise', '~>2.1.3'
gem 'mysql2'

gem "babosa"
gem "rails_autolink"

gem "settingslogic"
gem "seo_helper"
gem 'open_graph_helper'
gem 'google_plus_helper'

gem 'exception_notification'

gem "mobile-fu"

gem 'capistrano', :group => "development"

gem 'rake', :group => :test

group :development do
  gem "capistrano"
  gem "magic_encoding"
  gem "annotate"
end

group :test, :development do
  gem "rspec"
  gem "rspec-rails"
  gem "simplecov"
  gem "capybara"
end

然后我尝试评论这一行:

gem 'mysql2'

但我仍然得到错误。所以我不知道为什么会出现这个错误

4

3 回答 3

88

试试看

sudo apt-get install mysql-client libmysqlclient-dev
于 2013-09-17T01:55:19.117 回答
5

@Ricardo Masao Shigeoka for mac,先试试

brew install mysql, 然后

放入你的 Gemfile gem 'mysql2', '0.3.18'

bundle在终端中运行命令。

这个设置对我有用,我有 El Captain OS,rails 4.2.6,希望这有帮助

于 2016-05-14T11:57:07.910 回答
4

试试这个

gem 'mysql2', '~> 0.4.10'
于 2018-11-28T03:37:54.140 回答