我使用的是Ruby on Rails 3.1预版本。我喜欢使用PostgreSQL,但问题是安装pg gem。它给了我以下错误:

$ gem install pg
Building native extensions.  This could take a while...
ERROR:  Error installing pg:
    ERROR: Failed to build gem native extension.

        /home/u/.rvm/rubies/ruby-1.9.2-p0/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=/home/u/.rvm/rubies/ruby-1.9.2-p0/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 /home/u/.rvm/gems/ruby-1.9.2-p0/gems/pg-0.11.0 for inspection.
    Results logged to /home/u/.rvm/gems/ruby-1.9.2-p0/gems/pg-0.11.0/ext/gem_make.out

我怎么解决这个问题?


当前回答

libpq-fe.h的位置取决于PostgreSQL的安装位置(这取决于你如何安装它)。使用locate (http://en.wikipedia.org/wiki/Locate_%28Unix%29)在您的机器上查找libpq-fe.h文件。如果它存在,它将在PostgreSQL安装的include目录中。

$ locate libpq-fe.h
/Library/PostgreSQL/9.1/include/libpq-fe.h

包含pg_config的bin目录将位于与include目录相同的目录中。正如错误提示的那样,使用——with-pg-config选项来安装gem:

$ gem install pg --with-pg-config="/Library/PostgreSQL/9.1/bin/pg_config"

注意,如果你从未使用过locate,或者自从安装PostgreSQL后就没有更新过,你可能需要运行updatedb。

其他回答

步骤1)确保在您的系统中安装了postgress(如果它已经安装并且您可以在您的机器上运行postgress服务器,则移动到步骤(2)

apt-get install postgresql postgresql-contrib (sol - fatal error: libpq-fe.h: No such file or directory)
sudo apt-get install ruby-dev (required to install postgress below)
sudo gem install pg
sudo service postgresql restart

步骤2)一些c++文件试图直接访问libpq-fe.h,但无法找到。所以我们需要手动搜索每一个这样的文件,并将libpq-fe.h替换为postgresql/libpq-fe.h

在所有目录和子目录中搜索libpq-fe.h的命令是grep -rnw ./ -e 'libpq-fe.h'

3)进入“All file listed by command run in step 2”,使用postgresql/libpq-fe.h手动修改libpq-fe.h。

Mac用户使用Postgres的正确答案。应用程序是根据该包提供的libpq构建的。例如,对于9.4版本(撰写本文时的最新版本),您所需要的是:

export CONFIGURE_ARGS="with-pg-include=/Applications/Postgres.app/Contents/Versions/9.4/include"
gem install pg

这将使你的pg gem与你安装的PostgreSQL版本保持同步。在这种情况下,安装Homebrew软件是一种浪费。

我在通过asdf安装postgres时遇到了同样的错误。pg-config解决方案对我不起作用。相反,我必须找到包含该文件的postgres include文件夹,并运行带有——with-pg-include标志的命令

gem install pg -- --with-pg-include=/<path>/.asdf/installs/postgres/<version>/include

我通过rvm重新安装Ruby修复了同样的错误:

rvm reinstall 1.9.3

libpq-fe.h的位置取决于PostgreSQL的安装位置(这取决于你如何安装它)。使用locate (http://en.wikipedia.org/wiki/Locate_%28Unix%29)在您的机器上查找libpq-fe.h文件。如果它存在,它将在PostgreSQL安装的include目录中。

$ locate libpq-fe.h
/Library/PostgreSQL/9.1/include/libpq-fe.h

包含pg_config的bin目录将位于与include目录相同的目录中。正如错误提示的那样,使用——with-pg-config选项来安装gem:

$ gem install pg --with-pg-config="/Library/PostgreSQL/9.1/bin/pg_config"

注意,如果你从未使用过locate,或者自从安装PostgreSQL后就没有更新过,你可能需要运行updatedb。