76

I am trying to install the pg gem for use with Postgres.app on my local machine. I am running Mavericks.

Postgres.app is installed and running fine, but I cannot get the gem to work. I've done the following:

  1. Used the command 'env ARCHFLAGS="-arch x86_64" gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/MacOS/bin/pg_config' from the Postgres.app documentation
  2. Updated Homebrew and installed the Apple GCC 4.2
  3. Installed the Xcode developer tools
  4. Updated my $PATH to reference both the Postgres.app bin and lib directories

All with no success. Here is the specific error message I receive:

Building native extensions with: '--with-pg-config=/Applications/Postgres.app/Contents/MacOS/bin/pg_config'
This could take a while...
ERROR:  Error installing pg:
    ERROR: Failed to build gem native extension.

    /Users/Brian/.rvm/rubies/ruby-2.0.0-p353/bin/ruby extconf.rb --with-pg-config=/Applications/Postgres.app/Contents/MacOS/bin/pg_config
Using config values from /Applications/Postgres.app/Contents/MacOS/bin/pg_config
sh: /Applications/Postgres.app/Contents/MacOS/bin/pg_config: No such file or directory
sh: /Applications/Postgres.app/Contents/MacOS/bin/pg_config: No such file or directory
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
    --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/Brian/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
    --with-pg
    --without-pg
    --with-pg-config
    --with-pg-dir
    --without-pg-dir
    --with-pg-include
    --without-pg-include=${pg-dir}/include
    --with-pg-lib
    --without-pg-lib=${pg-dir}/

I'd appreciate any help you can offer. Thanks!

blundin
  • 1,603
  • 3
  • 14
  • 29
  • possible duplicate of [Impossible to Install PG gem on my mac with Mavericks](http://stackoverflow.com/questions/19625487/impossible-to-install-pg-gem-on-my-mac-with-mavericks) – zeantsoi Nov 26 '13 at 18:13

8 Answers8

262

You probably have the wrong path for --with-pg-config, check if it's actually there.

You can find the correct path to pg_config with:

find /Applications -name pg_config

In the latest Postgres.app Version the path is:

gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.5/bin/pg_config
Tobias
  • 4,523
  • 2
  • 20
  • 40
Tom De Leu
  • 8,144
  • 4
  • 31
  • 30
  • Embarrassingly enough, that's it. After upgrading to the latest version of Postgres.app the path changed and I did not notice. Thanks! – blundin Nov 26 '13 at 20:28
  • This was it for me too! –  Jan 15 '14 at 22:50
  • 23
    Thanks for this! For some reason, on my installation I had to run `$ gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config .` – Gabriel Osorio Feb 26 '14 at 13:37
  • 3
    Newer Postgres.app installs might need you to use this command ``gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/MacOS/bin/pg_config .`` – Sean May 26 '14 at 04:29
  • @Sean: There is no 'bin' folder under Contents/MacOS on my system. Just a postgres executable file. The one Gabriel Osorio mentioned seems to be the right path (as of 9.3.4.1). – Ege Ersoz Jun 02 '14 at 01:07
  • does anybody know why we need the '--' before the option? – ovatsug25 Jun 25 '14 at 15:38
  • 1
    For further reference, I just downloaded Postgres.app yesterday and my pg_config is located at `Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config`. One should be able to figure out where their pg_config is by using `ls` to look through the `Applications/Postgres.app/Contents` directory. See if you have `/Contents/MacOS` or `/Contents/Versions`... – peterhurford Aug 02 '14 at 18:05
  • every new ruby version I keep using this answer! thanks a million! – Nick Ginanto Sep 19 '14 at 19:07
  • The -- -- is important, must be a bug in pg. – BAR Oct 30 '14 at 15:31
  • @BAR: no, the "--" is used to tell "gem install" to stop processing options, and anything after that (like "--with-pg-config") are build flags for how to build the specific gem. Check http://guides.rubygems.org/command-reference/#gem-install – Tom De Leu Oct 30 '14 at 20:30
  • It looks like Postgres.app has been bumped up a version. I had to use gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.4/bin/pg_config – Tim Scollick Jul 16 '15 at 14:01
  • Why is the extra set of -- needed for pass in arguments to gem install pg? – Edward Jan 05 '16 at 16:19
16

In my case (running Postgres.app v9.3.4.2) it only seemed to work when prepending the environment architecture flags:

env ARCHFLAGS="-arch x86_64" gem install pg -- \
--with-pg-config=/Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config 
Marius Butuc
  • 17,781
  • 22
  • 77
  • 111
  • You can put the ARCHFLAGS in your .bash_profile (or equivalent) by including `export ARCHFLAGS="-arch x86_64"`. For me, without this, PG doesn't work. – peterhurford Aug 02 '14 at 18:06
  • I'm using bundler and it took me a bit to figure out how to add this to a `bundle` command. You can use `bundle config pg.build "...."`, see more at http://bundler.io/v1.3/man/bundle-config.1.html – Chad Gorshing Jan 07 '17 at 17:44
14

Being on a brand new mac, here's what I had to do:

  1. Install Xcode tools from the app store
  2. Open Xcode tools and accept the license
  3. Now run (hopefully a future-proofed command):

    version=$(ls /Applications/Postgres.app/Contents/Versions/ | tail -1) gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/$version/bin/pg_config .

If you have trouble, you can troubleshoot a bit by checking out the actual error in the mkmf.log which you can find by running (if using rvm):

cd ~/.rvm ; find . -name mkmf.log | grep pg
Louis Sayers
  • 2,162
  • 3
  • 30
  • 53
  • This is the correct path for the latest version of Postgres App. – Michael Shimmins Jun 07 '14 at 02:30
  • The -- -- is important, must be a bug in pg. – BAR Oct 30 '14 at 15:30
  • "latest" work as a version now, there is a symlink. That being said, I have a new M1 ship Mac and this does not work for me, I don't know why. I inspect the path and everything is there. Maybe that's because it does not expect a dylib for libpq. – Mig Feb 10 '22 at 10:06
6

I was able to install pg with this command

    gem install pg -- --with-pg-config=/Library/PostgreSQL/9.3/bin/pg_config

I found my path by running

    sudo find / -name "pg_config"

and I Successfully installed pg-0.17.1

ylemp
  • 318
  • 3
  • 4
  • It's easier to find the `pg_config` file with this command, so you don't have to search through all the files on your computer: `$ find /Applications/Postgres.app/ -name "pg_config"` Searching through `/Library/` would work on your machine. – Powers Jul 22 '15 at 14:33
3

adding the postgress bin dir to the path also does the trick. just add the bin to the pat like this. with recent installs the latest symbolic link makes sure that this path should be 'stable' for future version upgrades.

export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin
koen
  • 31
  • 1
2

To resolve this issue I installed postgres using homebrew using the following in the terminal window:

brew install postgres

Homebrew can be found here

http://brew.sh

Geoff Smith
  • 97
  • 1
  • 8
1

This worked for me:

gem install pg -- --with-pg-config=`which pg_config`
Gerry
  • 10,584
  • 4
  • 41
  • 49
1

For future reference, since a lot of us are posting new paths for the new version numbers:

Currently I'm seeing a symlink called latest in /Applications/Postgres.app/Contents/Versions/.

You should be able to just do:

$ gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/latest/bin/pg_config

And forget about the version number. This might not apply to every (older) version, but I myself was looking for a snippet I could save and reuse.

Gabriel Osorio
  • 1,003
  • 9
  • 8