railsチュートリアル1章 リスト 3.2サンプルアプリケーション用のGemfileにて
gemfile
group :production do
gem 'pg', '0.20.0'
end
上記追加後 $ bundle install
で
An error occurred while installing pg (0.20.0), and Bundler cannot continue.
Make sure that `gem install pg -v '0.20.0' --source 'https://rubygems.org/'` succeeds before bundling.
のようなエラーが出た。
その後$ bundle install --without production
でエラー回避できたので、原因は後で追記する。