up vote 20 down vote favorite
4
share [g+] share [fb]

Running a Ruby on Rails (RoR) app or Ruby code which uses the ActiveRecord framework, you get the error message:

Please install the postgresql adapter: gem install activerecord-postgresql-adapter

Trying to run:

gem install activerecord-postgresql-adapter

also fails, leaving you at a loss.

link|improve this question
1  
what operating system? – eKek0 Nov 2 '09 at 23:29
feedback

7 Answers

The problem is not what anyone wrote. The problem is that the name of the postgresql database adapter is "postgresql", not "postgres", fix the database.yml, but the name of the GEM is "pg".

link|improve this answer
This fixed my problem. Thanks! – localshred Aug 3 '10 at 21:15
This fixed my problem also!! – RyanWilcox Aug 2 '11 at 16:15
Yup, I did it too! – Jeff Dickey Nov 20 '11 at 7:59
feedback

This means you don’t have the new ‘pg’ postgresql library installed. This is easily fixed with a bit of:

sudo gem install pg

I (Dov) found other solutions on the web which described setting GEM_HOME and adding ~/.gem/ruby/vers/bin to your PATH, but they didn't work. This solution above was provided by Mark Mansour on his blog State of Flux at: http://stateofflux.com/2008/7/13/activerecord-postgresql-adapter-in-rails-2-1/

link|improve this answer
4  
This one did not work for me ... still looking for a solution. – Toby Hede Nov 19 '09 at 6:00
feedback

Here's the answer I got from Heroku and it worked for me (after trying different pg gems, adapters, and everything else on the 10 other posts about this)

1) add the line: gem 'pg' to your Gemfile.

2) Run the command bundle install to install the gem into your bundle.

3) Stage the Gemfile and Gemfile.lock changes: git add Gemfile Gemfile.lock

4) Commit the changes: git commit -m "Install the pg gem"

5) Redeploy to heroku: git push heroku master

link|improve this answer
feedback

sudo apt-get install ruby1.8-dev

then...

gem install pg

Worked for me!

link|improve this answer
2  
What if we want to use 1.9.2? – Ramon Tayag Oct 28 '10 at 8:25
feedback

I did a little roundup of the current state of Ruby + PostgreSQL database drivers on railsonpostgresql.com; I think sudo gem install pg is probably the one you want.

link|improve this answer
Thank you. I was looking for the difference between different drivers. Information not as easy to find as I thought. – Nick Mar 17 '11 at 20:05
feedback

You could read the following post to get an idea.

link|improve this answer
My attempts at following that post are included in my original answer, as they did not work for me. – user71268 Nov 2 '09 at 23:32
feedback

On debian(squeeze): aptitude install libdbd-pg-ruby

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.