Tùy chọn 1:
Thêm pg
vào Gemfile
của bạn nhưng bỏ qua việc cố gắng cài đặt nó cục bộ.
$ cat Gemfile
...
group :production do
# gems specifically for Heroku go here
gem "pg"
end
# Skip attempting to install the pg gem
$ bundle install --without production
Tùy chọn 2 (Debian / Ubuntu):
Thêm pg
vào Gemfile
của bạn nhưng trước tiên hãy cài đặt các điều kiện tiên quyết.
$ cat Gemfile
...
group :production do
# gems specifically for Heroku go here
gem "pg"
end
# Install the pg gem's dependencies first
$ sudo apt-get install libpq-dev
# Then install the pg gem along with all the other gems
$ bundle install