概要
Railsアプリケーションでgemをbundle installした際に発生したエラーと解消方法について記します。
環境
Ruby 2.6.5
Ruby on Rails 6.0.0
内容
エラー文
An error occurred while installing pg (1.2.3), and Bundler cannot
continue.
Make sure that `gem install pg -v '1.2.3' --source 'https://rubygems.org/'`
succeeds before bundling.
と
Could not find gem 'pg (>= 0.18, < 2.0)' in any of the gem sources listed in your Gemfile.
といったエラーです。
解消方法
下記コマンドで解消しました。
brew install postgres
postgresSQLで引っかかっていたみたいです。