尝试运行命令时出现错误消息:bundle install --without production

时间:2012-08-13 10:24:36

标签: ruby-on-rails ruby ubuntu command-line

当我尝试运行

bundle install --without production
在Ubuntu 12.04上的

命令,我收到如下错误信息:

Could not find gem 'pg0.12.2 (>= 0) ruby' in the gems available on this machine

关于为什么会发生这种情况的任何想法? 感谢

1 个答案:

答案 0 :(得分:2)

如果您想安装0.12.2 gem,请按以下方式书写。

gem 'pg', '0.12.2'

如果您希望版本大于0.12.2,请按以下方式编写

gem 'pg' , '>= 0.12.2'

请使用此链接了解有关如何在导轨Bundle

中捆绑宝石的详情