2013-02-16 161 views
0

尝试安装pg gem时出现以下问题。我的操作系统是Ubuntu 12.10。我已经安装了postgresql(通过postgres页面的安装程序)。我也做了libpq5libpq-dev的apt-get安装。这是错误:无法安装pg gem

ERROR: Error installing pg: 
    ERROR: Failed to build gem native extension. 

     /home/sauronnikko/.rvm/rubies/ruby-1.9.3-p385/bin/ruby extconf.rb 
checking for pg_config... yes 
Using config values from /usr/bin/pg_config 
checking for libpq-fe.h... yes 
checking for libpq/libpq-fs.h... yes 
checking for pg_config_manual.h... yes 
checking for PQconnectdb() in -lpq... no 
checking for PQconnectdb() in -llibpq... no 
checking for PQconnectdb() in -lms/libpq... no 
Can't find the PostgreSQL client library (libpq) 
*** 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 
    --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/sauronnikko/.rvm/rubies/ruby-1.9.3-p385/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 
    --with-pqlib 
    --without-pqlib 
    --with-libpqlib 
    --without-libpqlib 
    --with-ms/libpqlib 
    --without-ms/libpqlib 

你能帮我吗?由于

+0

$创业板安装PG - --with-PG-配置=在/ usr /的pgsql-9.2 /斌/ pg_config会帮助我想。然而--with-pg-config路径取决于你安装的postgres版本。 – gipcompany 2013-02-16 18:24:48

+0

它给了我同样的错误。我相信它实际上一直在寻找'pg_config',因为它总是说'检查pg_config ... yes',所以我认为这是其他的错误 – sauronnikko 2013-02-16 18:48:09

+1

或者这是[Q&A](http://stackoverflow.com/questions/4393189/failing -install-pg-gem-mkmf-rb -cant-find-header-files-for-ruby-mac-osx-1)对你有帮助吗? – gipcompany 2013-02-16 18:51:46

回答