我尝试使用宝石安装pg,但它似乎不工作。

Gem install pg给出这个错误

Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing pg:
        ERROR: Failed to build gem native extension.

C:/Ruby/bin/ruby.exe 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=C:/Ruby/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 C:/Ruby/lib/ruby/gems/1.8/gems/pg-0.10.1 for
inspection.
Results logged to C:/Ruby/lib/ruby/gems/1.8/gems/pg-0.10.1/ext/gem_make.out

当前回答

$ PATH=$PATH:/Library/PostgreSQL/9.1/bin sudo gem install pg

将9.1版本替换为系统上安装的版本。

其他回答

我没有安装postgresql,所以我只是使用

sudo apt-get install postgresql postgresql-server-dev-9.1

Ubuntu 12.04。

这就解决了问题。


更新:

使用最新版本:

sudo apt-get install postgresql-9.3 postgresql-server-dev-9.3

如果你使用的是jruby而不是ruby,在安装pg gem时也会遇到类似的问题。相反,你需要安装适配器:

gem 'activerecord-jdbcpostgresql-adapter'

Mac用户

PATH=$PATH:/Library/PostgreSQL/9.4/bin/ gem install pg

这应该能奏效

我有个问题,这个方法对我很管用:

安装postgresql-devel包,这将解决pg_config缺失的问题。

sudo apt-get install libpq-dev

我必须在CentOS 5.8上这样做。运行捆绑包安装一直导致问题,因为我不能强制它使用特定的PG版本。

我也不能删除postgresql postgresql-devel,因为依赖关系的问题(它会删除php, http等)

解决方案?临时打乱$PATH以优先更新pgsql而不是默认pgsql:

export PATH=/usr/pgsql-9.2/bin:$PATH
bundle install

基本上,使用上面的命令,它会在/usr/bin/pg_config之前查看/usr/pgsql-9.2/bin/pg_config