I tried using gem install pg but it doesn't seem to work.

gem install pg gives this error

Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing pg:
        ERROR: Failed to build gem native extension.

C:/Ruby/bin/ruby.exe 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=C:/Ruby/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 C:/Ruby/lib/ruby/gems/1.8/gems/pg-0.10.1 for
inspection.
Results logged to C:/Ruby/lib/ruby/gems/1.8/gems/pg-0.10.1/ext/gem_make.out

Please Help. Thanks in advance.

link|improve this question

58% accept rate
What do those two logs say? – Makis Jan 28 '11 at 10:35
feedback

6 Answers

up vote 2 down vote accepted

Answered here: Can't install pg gem on Windows

There is no Windows native version of latest release of pg (0.10.0) released yesterday, but if you install 0.9.0 it should install binaries without issues.

link|improve this answer
feedback

I had this problem, this worked for me:

Install the postgresql-devel package, this will solve the issue of pg_config missing.

link|improve this answer
31  
Worked for me by apt-get install libpq-dev. Thanks for the hint. – Ryanmt Jul 15 '11 at 17:09
@Ryanmt Worked in Xubuntu 11.04, thanks a lot! – bilygates Jul 23 '11 at 15:13
and for me installing postgresql-server-dev-8.4 on ubuntu LTS 10 – pferdefleisch Sep 4 '11 at 22:56
1  
Confirmation, from the pg gem Wiki homepage: "On Ubuntu, /usr/bin/pg_config is provided by the libpq-dev package." – Mark Berry Oct 5 '11 at 0:28
1  
what about mac ? – Fivell Dec 16 '11 at 13:33
show 2 more comments
feedback
gems pg -- --with-pg-config=/usr/local/pgsql/bin/pg_config

this helped me

link|improve this answer
should be ---> gem install pg -- --with-pg-config=/usr/local/pgsql/bin/pg_config<---- do a locate pg_config to find where it is on your *nix type system (works in osx) – concept47 Jan 31 at 3:14
feedback

gem install pg -- --with-pg-config=/usr/pgsql-9.1/bin/pg_config

link|improve this answer
feedback
$ PATH=$PATH:/Library/PostgreSQL/9.1/bin sudo gem install pg

replace the 9.1 for the version installed don your system.

link|improve this answer
feedback

The pg gem requires the postgresql client libraries to bind against. This error usually means it can't find your Postgres libraries. Either you don't have them installed or you may need to pass the --with-pg-dir= to your gem install.

link|improve this answer
feedback

protected by Community Sep 30 '11 at 22:44

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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