我正在尝试使用rails db:create
为我的rails 5.0.0.1应用程序创建数据库,但是收到以下错误:
Specified 'postgresql' for database adapter, but the gem is not loaded. Add `gem 'pg'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).
关键是我的Gemfile中有一个gem 'pg'
,它已由bundle update
更新到1.0.0版本,并在bundle install
之后启动:
$ gem list
...
pg (1.0.0, 0.20.0)
我不知道为什么Rails无法识别已安装的pg gem,并且无法为我的应用程序创建数据库。