PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Rails 3.1 - Pushing to Heroku - Błędy podczas instalacji adaptera postgres?

Opcja 1:

Dodaj pg do twojego Gemfile ale pomiń próby zainstalowania go lokalnie.

$ 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

Opcja 2 (Debian/Ubuntu):

Dodaj pg do twojego Gemfile ale najpierw zainstaluj wymagania wstępne.

$ 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Pobrać rozmiar dużego obiektu w zapytaniu PostgreSQL?

  2. BŁĄD Java SQL:Relacja nazwa_tabeli nie istnieje

  3. Jak używać identyfikatorów UUID w SQLAlchemy?

  4. Zaawansowane dopasowywanie partycji do łączenia partycji

  5. Pobierz ostatni dzień miesiąca w PostgreSQL