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

我怎么解决这个问题?


当前回答

步骤1)确保在您的系统中安装了postgress(如果它已经安装并且您可以在您的机器上运行postgress服务器,则移动到步骤(2)

apt-get install postgresql postgresql-contrib (sol - fatal error: libpq-fe.h: No such file or directory)
sudo apt-get install ruby-dev (required to install postgress below)
sudo gem install pg
sudo service postgresql restart

步骤2)一些c++文件试图直接访问libpq-fe.h,但无法找到。所以我们需要手动搜索每一个这样的文件,并将libpq-fe.h替换为postgresql/libpq-fe.h

在所有目录和子目录中搜索libpq-fe.h的命令是grep -rnw ./ -e 'libpq-fe.h'

3)进入“All file listed by command run in step 2”,使用postgresql/libpq-fe.h手动修改libpq-fe.h。

其他回答

在Debian 7.0, 64位(Wheezy)上,只需运行:

sudo apt-get install libpq-dev

成功安装libpq-dev后,运行:

bundle install

在Mac OS X上运行如下:

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

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

我在Mac OS上也有同样的问题,但我在终端上使用以下方法轻松安装了PostgreSQL gem:

ARCHFLAGS="-arch x86_64" gem install pg

(我先用brew install PostgreSQL安装PostgreSQL。)

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

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

我最终解决了这个问题,但没有使用前面描述的方法。

使用brew install postgresql,我发现它已经安装了,但没有链接。

找出PostgreSQL安装的位置,并删除它, 然后再次安装postgresql, 酿造链接postgresql Gem install pg