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

我怎么解决这个问题?


当前回答

在FreeBSD(9.1)上,必要的包是/usr/ports/database/postgresql-server*,安装时也会安装所需的头文件,使gem安装“pg”失败。这里的答案帮助我找到解决方案,但包名的差异需要进行一些搜索。

希望这能帮助人们在FreeBSD系统上搜索“-dev”包时避免一点挠头!

其他回答

在macOS(以前的Mac OS X和OS X)上,使用Homebrew安装正确的头文件:

brew install postgresql

然后运行

gem install pg

应该工作。

或者,不安装整个postgresql,你可以酿造安装libpq并导出正确的PATH和PKG_CONFIG_PATH,如“警告”部分所述

我也尝试过做gem安装libpq-dev,但我收到了这个错误:

Can't find the 'libpq-fe.h header
*** extconf.rb failed ***

然而,我发现使用sudo apt-get(我尽量避免在Ruby on Rails中使用)安装是有效的,即。

sudo apt-get install libpq-dev
# or
apt-get install postgres-server-dev-{pg.version}
# for postgresql 9.4 on Ubuntu 14.04

然后我就能做了

gem install pg

没有问题。

在OS X和MacPorts上,PostgreSQL不再需要-devel包。安装pg gem的步骤如下:

~ > sudo port install postgresql-devel
...
Error: postgresql-devel has been replaced by postgresql91; please install that port instead
~ > gem install pg -v '0.17.1' -- --with-pg-config=/opt/local/lib/postgresql95/bin/pg_config

参见这篇文章。

我通过安装postgresql-common包解决了这个问题。这个包提供了pg_config二进制文件,这很可能是您所缺少的。

在FreeBSD(9.1)上,必要的包是/usr/ports/database/postgresql-server*,安装时也会安装所需的头文件,使gem安装“pg”失败。这里的答案帮助我找到解决方案,但包名的差异需要进行一些搜索。

希望这能帮助人们在FreeBSD系统上搜索“-dev”包时避免一点挠头!