gem列表中有mysql2 gem,但项目找不到该gem。

9

我目前正在构建一个需要mysql2 gem的RoR项目。我已经成功安装了这个gem,因为它在我的gem列表中显示出来了。

[root@vc2cmmka035538n simple_cms]# gem list

*** LOCAL GEMS ***

actionmailer (3.2.3)
actionpack (3.2.3)
activemodel (3.2.3)
activerecord (3.2.3)
activeresource (3.2.3)
activesupport (3.2.14, 3.2.3)
arel (3.0.2)
bigdecimal (1.1.0)
builder (3.2.2, 3.0.0)
bundler (1.1.5)
c2c_linux_patch_utilities (0.29.0)
chef (11.6.2)
chef-zero (1.6)
debug_me (0.5.1)
diff-lcs (1.1.3)
erubis (2.7.0)
gelf (1.1.3)
hashie (2.0.5)
highline (1.6.19)
hike (1.2.1)
i18n (0.6.5)
io-console (0.3)
ipaddress (0.8.0)
journey (1.0.3)
json (1.7.7, 1.5.5)
knife-lastrun (0.0.4)
mail (2.4.4)
mime-types (1.25)
minitest (2.5.1)
mixlib-authentication (1.3.0)
mixlib-cli (1.3.0)
mixlib-config (1.1.2)
mixlib-log (1.6.0)
mixlib-shellout (1.2.0)
moneta (0.6.0)
multi_json (1.8.1)
mysql2 (0.3.17) //here it is! :(
net-ssh (2.7.0)
net-ssh-gateway (1.2.0)
net-ssh-multi (1.2.0, 1.1)
ohai (6.18.0)
polyglot (0.3.3)
pony (1.4, 1.3)
poseidon (0.0.4)
puma (1.6.3)
rack (1.5.2, 1.4.1)
rack-cache (1.2)
rack-ssl (1.3.2)
rack-test (0.6.1)
rails (3.2.3)
railties (3.2.3)
rake (10.1.0, 0.9.2.2)
rdoc (3.12.2, 3.9.5)
rest-client (1.6.7)
rspec (2.12.0)
rspec-core (2.12.2)
rspec-expectations (2.12.1)
rspec-mocks (2.12.2)
rspec_junit_formatter (0.1.6)
ruby-shadow (2.2.0)
rubygems-update (1.8.19)
sdoc (0.3.20)
simplecov (0.7.1)
simplecov-html (0.7.1)
sprockets (2.1.2)
systemu (2.5.2, 2.5.1)
thor (0.14.6)
tilt (1.3.3)
treetop (1.4.10)
tzinfo (0.3.31)
xml-simple (1.1.1)
yajl-ruby (1.1.0)

然而,当我尝试启动我的项目时,我遇到了以下错误:
[root@vc2cmmka035538n simple_cms]# rails s
Could not find gem 'mysql2 (= 0.3.17) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.

宝石包在我的Gemfile文件中确定存在:
source 'https://rubygems.org'

gem 'rails', '3.2.3'

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

gem 'mysql2', '0.3.17'


gem 'json'

# Gems used only for assets and not required
# in production environments by default.
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', :platform => :ruby

  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

# Use unicorn as the app server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug'

我应该做什么才能让我的项目确认mysql2 gem已经安装在我的电脑上呢?


编辑:想要包含一些有关我的环境的信息

Ruby:ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]

Rails:Rails 3.2.3

RubyGem环境:

RubyGems Environment:
  - RUBYGEMS VERSION: 1.8.24
  - RUBY VERSION: 1.9.3 (2013-06-27 patchlevel 448) [x86_64-linux]
  - INSTALLATION DIRECTORY: /opt/chef/embedded/lib/ruby/gems/1.9.1
  - RUBY EXECUTABLE: /opt/chef/embedded/bin/ruby
  - EXECUTABLE DIRECTORY: /opt/chef/embedded/bin
  - RUBYGEMS PLATFORMS:
    - ruby
    - x86_64-linux
  - GEM PATHS:
     - /opt/chef/embedded/lib/ruby/gems/1.9.1
     - /root/.gem/ruby/1.9.1
  - GEM CONFIGURATION:
     - :update_sources => true
     - :verbose => true
     - :benchmark => false
     - :backtrace => false
     - :bulk_threshold => 1000
     - :sources => ["http://c2c-repo1-prod.fmr.com:9292"]
  - REMOTE SOURCES:
     - http://c2c-repo1-prod.fmr.com:9292
4个回答

16

有可能缺少构建本地扩展所需的软件包。

#installs the tools and libraries for basic development, eg. make.
sudo apt-get install build-essential

#installs the sources for ruby
sudo apt-get install ruby-dev

#installs the libraries and headers for mysql extensions
sudo apt-get install libmysqlclient-dev

12

删除你的 Gemfile.lock 文件并运行 bundle install


我还没有创建Gemfile.lock文件,因为我还没有能够运行该项目。此外,由于安全原因,我无法在工作中运行bundler,但我可以使用gem install安装gems。 - beckah
顺便说一句,我强烈建议您使用Bundler,它非常适合部署和协作,真的可以让您的Ruby生活更轻松。什么是安全原因? - jazzytomato
@Thomas_Haratyk - 所以我应该完全删除我的Gemfile,然后再尝试运行rails s吗?由于某种原因,我工作的地方有一个代理,他们对此非常严格,所以像wget这样的命令不起作用 :/ 我对此的感觉并不重要。 - beckah
1
@beckah 保留你的Gemfile的副本,然后尝试将其删除。但我不确定它是否有效... - jazzytomato
2
如果你愿意在不同的工作站上工作或与他人合作,这可能会导致问题。你将不得不手动安装宝石(正确版本)。部署到其他平台也需要手动安装宝石,在最坏的情况下,你可能无法在没有使用bundler的情况下进行部署(例如在Heroku上)。 - jazzytomato
显示剩余3条评论

3

安装mysql的gem

然后

安装mysql2的gem,就可以正常工作了


0
对于仍然遇到此问题的Mac用户,请尝试以下操作: (可以跳过第一步)
步骤1
gem install mysql

步骤2

brew install openssl

步骤三

export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/

步骤 4

brew install mysql2

如果这个方法不起作用,请查看此 GitHub 问题页面上的对话
参考 - 如果上述方法不起作用,可以检查一下

你的回答可以通过提供更多支持信息来改进。请编辑以添加进一步的细节,例如引用或文档,以便他人可以确认你的答案是正确的。您可以在帮助中心找到有关如何编写良好答案的更多信息。 - Community

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接