rails console无法找到已安装的gem

时间:2014-11-04 06:48:43

标签: ruby-on-rails ruby-on-rails-4 bundler

$ bundle install |grep chunk
Using chunky_png 1.3.3
$ rails c
Could not find chunky_png-1.3.3 in any of the sources
Run `bundle install` to install missing gems.

我已尝试从rvm gemset中删除所有宝石并重新运行捆绑两次,但没有帮助。有什么想法吗?

这是在Ubuntu 13.10机器上。我的Mac OSX机器上的相同代码工作正常。

1 个答案:

答案 0 :(得分:1)

通常,这是因为Bundler和Rails使用不同版本的Ruby运行。要进行检查,请运行bundle envrails runner 'puts RUBY_VERSION'

如果这还没有解决,请将两者的输出添加到您的问题中。