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

我怎么解决这个问题?


当前回答

郑重声明:

Ruby on Rails 4应用程序在OS X与PostgresApp(在这种情况下需要0.17.1版本-有点老项目):

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

其他回答

我可以用另一种方法解决这个问题。我在系统里找不到图书馆。因此,我使用PostgreSQL主网站上的应用程序安装了它。在我的情况下(OS X),我发现文件在/Library/PostgreSQL/9.1/include/安装结束后。如果你已经安装了PostgreSQL,你也可以在其他地方安装这个文件,这取决于你的系统。

多亏了这个关于如何为gem安装添加额外路径的链接,我可以用下面的命令将gem指向lib:

export CONFIGURE_ARGS="with-pg-include=/Library/PostgreSQL/9.1/include/"
gem install pg

在那之后,它就工作了,因为它现在知道在哪里找到丢失的库。只需将路径替换为libpq-fe.h的正确位置

我在使用Postgresql 9.6时遇到了这个问题。我可以通过这样做来修复它:

brew upgrade postgresql@9.6
brew link postgresql@9.6 --force
gem install pg

在OS X 10.9 (Mavericks)上,我自定义安装了postgresql,然后我必须rvm重新安装Ruby。我现在很开心:)

找不到libpq-fe.h头文件

我在CentOS 7.0.1406上运行以下命令成功:

~ % psql --version # => psql (PostgreSQL) 9.4.1
yum install libpqxx-devel
gem install pg -- --with-pg-config=/usr/pgsql-9.4/bin/pg_config

或者,你可以配置捆绑器总是安装pg,使用这些选项(有助于在部署环境中运行捆绑器),

包配置构建。pg - with-pg-config = / usr / bin / pg_config / pgsql - 9.4

在Mac OS X上运行如下:

gem install pg -- --with-pg-config=***/path/to/pg_config***

***/path/to/pg_config***是pg_config的路径