vote up 2 vote down star

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.

flag
what operating system? – eKek0 Nov 2 at 23:29

4 Answers

vote up 1 vote down

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|flag
This one did not work for me ... still looking for a solution. – Toby Hede Nov 19 at 6:00
vote up 0 vote down

If this is on a *nix platform, you probably need to run sudo gem install activerecord-postgresql-adapter

link|flag
The question indicates that this attempt failed too. It is an incorrect and misleading error message. – dovwas Nov 2 at 23:33
the question indicates that gem install... failed. I said run with sudo, which is why gem installations usually fail on *nix platforms. – James Deville Nov 2 at 23:46
Got it. I left out the "sudo" from the answer, but I did try it with sudo: % sudo gem install activerecord-postgresql-adapter ERROR: could not find gem activerecord-postgresql-adapter locally or in a repository – dovwas Nov 3 at 19:39
ah, so were you saying that installing pg worked? – James Deville Nov 3 at 22:59
Yep, that's in my answer. It's just that the error message displayed gives you misleading information. – dovwas Nov 4 at 0:58
vote up 0 vote down

You could read the following post to get an idea.

link|flag
My attempts at following that post are included in my original answer, as they did not work for me. – dovwas Nov 2 at 23:32
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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