Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は得ています
! Taps Load Error: cannot load such file -- sqlite3
「sqlite3」がインストールされていても、database.yml はすべての環境で Postgres を使用するように設定されています
ルビーは1.9.3p125
1.9.3p125
Heroku は sqlite3 をサポートしていません。
したがって、Gemfile を次のように変更する必要があります。
group :development, :test do gem 'sqlite3' end group :production do gem 'pg' end
bundle installそしてまた走る
bundle install