sql >> Databasteknik >  >> RDS >> PostgreSQL

Rails 3.1 - Pushing to Heroku - Fel vid installation av postgres-adapter?

Alternativ 1:

Lägg till pg till din Gemfile men hoppa över att försöka installera det lokalt.

$ 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

Alternativ 2 (Debian/Ubuntu):

Lägg till pg till din Gemfile men först installera förutsättningarna.

$ 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


  1. Hur GET_FORMAT() fungerar i MariaDB

  2. SQLite AVG

  3. PostgreSQL-hantering och automatisering med ClusterControl

  4. Hur man ansluter till databasen från Unity