विकल्प 1:
pg
जोड़ें आपके Gemfile
. पर लेकिन इसे स्थानीय रूप से स्थापित करने का प्रयास करना छोड़ दें।
$ 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
विकल्प 2 (डेबियन/उबंटू):
pg
जोड़ें आपके Gemfile
. पर लेकिन पहले पूर्वापेक्षाएँ स्थापित करें।
$ 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