我使用的是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

我怎么解决这个问题?


当前回答

我在亚马逊Linux上也遇到了同样的问题。我可以找到libpq-fe.h头文件,但不知为何它不起作用。

它来自不同用户在机器上安装的不同版本的软件包。安装PostgreSQL 9.2和PostgreSQL 9.3。因此,在包含库之前,请确保您的PostgreSQL版本。

对我来说,神奇的命令行是:

sudo yum install postgresql93 postgresql93-server postgresql93-libs postgresql93-contrib postgresql93-devel

资料来源:用Yum安装PostgreSQL 9.3、PostGIS 2.1和p注浆的白痴指南

其他回答

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。

对于AltLinux,是postgresqlx包。X-devel(在我的例子中是postgresql9.5-devel)必须安装:

apt-get install postgresql9.5-devel

我在亚马逊Linux上也遇到了同样的问题。我可以找到libpq-fe.h头文件,但不知为何它不起作用。

它来自不同用户在机器上安装的不同版本的软件包。安装PostgreSQL 9.2和PostgreSQL 9.3。因此,在包含库之前,请确保您的PostgreSQL版本。

对我来说,神奇的命令行是:

sudo yum install postgresql93 postgresql93-server postgresql93-libs postgresql93-contrib postgresql93-devel

资料来源:用Yum安装PostgreSQL 9.3、PostGIS 2.1和p注浆的白痴指南

在Mac上,我用下面的代码解决了这个问题:

gem install pg -v '0.18.4' -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.4/bin/pg_config

我刚刚在OSX上运行了brew和postgres@9.4。

我的解决方案是这样的:

CONFIGURE_ARGS="with-pg-include=/usr/local/opt/postgresql@9.4/include/" bundle install