Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Rails 3.0.1. I installed the native pg gem for postgresql with this command:

$ export ARCHFLAGS='-arch i386' $ sudo gem install pg -- --with-pg-config=/Library/PostgreSQL/8.4/bin/pg_config

When I run the gem list, I can see that pg 0.9 is installed.

However when I set the postgres database adaptor and re-run the server, I get this error:

no such file to load -- pg

How can I fix this?

Thank you

share|improve this question

2 Answers

up vote 1 down vote accepted

Open the file named "Gemfile" in the root of your project and add:

gem 'pg'

somewhere in the middle of it (mine is after the line "gem 'rails', '3.0.0'").

Another way to "fix" it is to create a new project with:

rails new <project_name> -d postgresql
share|improve this answer
Thank you so much! I've spent an entire week looking for the solution. – Alex Oct 19 '10 at 10:28

I had the same issue with 0.14 and the postgres.app server from heroku. Found that my pg_config file was in the postgres.app directory tree...used that in my config and the pg gem finally installed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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