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

When I try to run bundle (bundle install), I all the time get

Installing pg (0.13.2) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /Users/ryan/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb 
checking for pg_config... no
No pg_config... trying anyway. If building fails, please try again with
 --with-pg-config=/path/to/pg_config
checking for libpq-fe.h... no
Can't find the 'libpq-fe.h header
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/Users/ryan/.rvm/rubies/ruby-1.9.2-p290/bin/ruby
    --with-pg
    --without-pg
    --with-pg-dir
    --without-pg-dir
    --with-pg-include
    --without-pg-include=${pg-dir}/include
    --with-pg-lib
    --without-pg-lib=${pg-dir}/lib
    --with-pg-config
    --without-pg-config
    --with-pg_config
    --without-pg_config


Gem files will remain installed in /Users/ryan/.rvm/gems/ruby-1.9.2-p290/gems/pg-0.13.2 for inspection.
Results logged to /Users/ryan/.rvm/gems/ruby-1.9.2-p290/gems/pg-0.13.2/ext/gem_make.out
An error occured while installing pg (0.13.2), and Bundler cannot continue.
Make sure that `gem install pg -v '0.13.2'` succeeds before bundling.

I use Mac OS X 10.6, the version of installed PostgreSQL is 9.1. I found the problem is in the libpq-dev, how could I install/fix that?

share|improve this question
1  
how have you install postgres on your mac ? – shingara Mar 12 '12 at 14:25
this way – user984621 Mar 12 '12 at 14:29
on_click installer ? Flink ? or MacPort ? – shingara Mar 12 '12 at 14:36
I tried to install that by this way: sudo port install libpq-dev, but another problem - Error: Port libpq-dev not found To report a bug, see <http://guide.macports.org/#project.tickets>. That's terrible, still some problems... – user984621 Mar 12 '12 at 15:14
1  
See this question: [here][1] [1]: stackoverflow.com/questions/10321189/… – banditKing Apr 25 '12 at 19:53

8 Answers

up vote 24 down vote accepted

As stated in your error log you need to pass in the path to the pg_config. Try to install the gem using:

gem install pg -- --with-pg-config= 'PATH_TO_YOUR_PG_CONFIG'

If you are not sure where your pg_config is, and assuming you are on Linux or Mac, you can run the following command:

which pg_config

Your pg-config can be in different locations depending on how you installed postgres.

share|improve this answer
As a note, the binary package from the Postgres site does not contain development headers or the pg_config program. – tadman Mar 12 '12 at 15:43
1  
The binary package from here: enterprisedb.com/products-services-training/pgdownload#osx most certainly does contain both pg_config (e.g., at /Library/PostgreSQL/9.1/bin/pg_config for 9.1.x) and the development headers. It's what I use to test the pg gem in development. – Michael Granger Mar 12 '12 at 23:53
7  
Wouldn't which pg_config be faster than find / -name pg_config? – Justin D. Nov 3 '12 at 20:27

if you are running on Linux you may be interested in what worked for me:

sudo apt-get install postgresql
sudo apt-get install libpq-dev

Then

gem install pg

then

bundle install

src: http://wikimatze.de/installing-postgresql-gem-under-ubuntu-and-mac

share|improve this answer
1  
thank, as it's in my case - no need to run bundle gem install pg – valk Jun 10 '12 at 15:48
3  
Not suitable for OS X. – dfrankow Jul 30 '12 at 18:31
2  
@dfrankow <-- Hater! – E.E.33 Jul 30 '12 at 23:16
11  
@E.E.33: The questioner said OS X. I don't see how it's hating to say your solution doesn't work on OS X. – dfrankow Jul 31 '12 at 16:25

The problem I had was that for some reason it was trying to compile with /usr/bin/gcc-4.2. I found that out by changing try_cpp in mkmf.rb (which I saw in the stack trace) to raise an exception with the compile line that was failing.

I soft-linked gcc to gcc-4.2 and it worked:

sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2

Why was it trying to use gcc-4.2? No idea.

The actual compile line:

/usr/bin/gcc-4.2 -E -I/Users/dfrankow/.rvm/rubies/ruby-1.9.3-p125/include/ruby-1.9.1/x86_64-darwin11.4.0 -I/Users/dfrankow/.rvm/rubies/ruby-1.9.3-p125/include/ruby-1.9.1/ruby/backward -I/Users/dfrankow/.rvm/rubies/ruby-1.9.3-p125/include/ruby-1.9.1 -I. -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include  -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wshorten-64-to-32 -Wimplicit-function-declaration  -fno-common -pipe  conftest.c -o conftest.i (RuntimeError)
share|improve this answer
I had the same error, this worked for me. – nikhil Aug 23 '12 at 18:13

In Ubuntu/Debian :

sudo apt-get install libpq-dev
share|improve this answer
4  
The question clearly says OSX, why just copy another answer? – Tim Post Oct 4 '12 at 3:07

You only need to install libpq-dev:

sudo apt-get install libpq-dev

Then the gem should install just fine.

share|improve this answer
1  
Not suitable for OS X. – dfrankow Jul 30 '12 at 18:31

I had the same problem and finally cracked it with:

sudo apt-get install postgresql-client-common

share|improve this answer
Any explanation of how/why that fixed the problem? – Kazark Mar 12 at 21:28

For a working OSX solution see this guide http://krugerdavid.com/journal/how-to-install-xcode-homebrew-git-rvm-postgresql-ruby-1-9-3-on-snow-leopard/

It will walk you through installing PostgreSQL using homebrew. Tested and working for me on OSX 10.8.3, PostgreSQL 9.2.3, and Ruby 2.0.0-p0

share|improve this answer

This works:

sudo apt-get -y install postgresql libpq-dev
bundle
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.