Möglichkeit 1:
Fügen Sie pg
hinzu zu Ihrem Gemfile
aber überspringen Sie den Versuch, es lokal zu installieren.
$ 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
Möglichkeit 2 (Debian/Ubuntu):
Fügen Sie pg
hinzu zu Ihrem Gemfile
aber installieren Sie zuerst die Voraussetzungen.
$ 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