Ubuntu Heroku错误与rake db:pull-!加载错误:无法加载这样的文件--sqlite3

Ubuntu Heroku错误与rake db:pull-!加载错误:无法加载这样的文件--sqlite3,ubuntu,heroku,sqlite,taps,Ubuntu,Heroku,Sqlite,Taps,我要走了 ! Taps Load Error: cannot load such file -- sqlite3 即使我已经安装了'sqlite3' My database.yml设置为在所有环境中使用Postgres Ruby是1.9.3p125Heroku不支持sqlite3 因此,您需要将您的文件更改为: group :development, :test do gem 'sqlite3' end group :production do gem 'pg' end 然

我要走了

 !    Taps Load Error: cannot load such file -- sqlite3
即使我已经安装了'sqlite3' My database.yml设置为在所有环境中使用Postgres


Ruby是
1.9.3p125

Heroku不支持sqlite3

因此,您需要将您的文件更改为:

group :development, :test do
  gem 'sqlite3'
end

group :production do
  gem 'pg'
end

然后再次运行
bundle install

在哪里可以找到gem文件?