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