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

我怎么解决这个问题?


当前回答

只有卸载(sudo apt-get purge) libpq-dev并重新安装它才对我有用。

其他回答

在CentOS 6.5(挤压)下,我创建了一个文件:

$ sudo touch /etc/profile.d/psql.sh

与内容:

pathmunge /usr/pgsql-9.3/bin

注意这里,你应该用pg_config文件设置你的PostgreSQL路径。你可以通过以下命令找到:

$ sudo find / -iname pg_config

保存文件:

$ sudo chmod +x /etc/profile.d/ruby.sh

然后再试着执行你的命令。

注意:任何时候你改变Bash配置-改变概要文件。d配置-您应该重新加载Bash。

看起来在Ubuntu中,头文件是libpq-dev包的一部分(至少在以下Ubuntu版本中是这样的: 11.04 (Natty Narwhal), 10.04 (Lucid Lynx), 11.10 (Oneiric Ocelot), 12.04 (Precise穿山甲),14.04 (Trusty Tahr)和18.04(仿生海狸)):

...
/usr/include/postgresql/libpq-fe.h
...

所以试着为你的操作系统安装libpq-dev或类似的软件:

Ubuntu/Debian系统:sudo apt-get install libpq-dev RHEL系统:yum install postgresql-devel 对于Mac Homebrew: brew安装postgresql 对于Mac MacPorts PostgreSQL: gem install pg -- --with-pg-config=/opt/local/lib/ PostgreSQL[版本号]/bin/pg_config . exe OpenSuse:在postgresql-devel中使用zypper 对于ArchLinux: pacman -S postgresql-libs

在CentOS上,我使用下面的命令安装libpq-dev包

yum install postgresql-devel

执行gem install pg返回与“No pg_config…”不管怎样。如果构建失败,请使用——with-pg-config=/path/to/pg_config"再试一次。

安装宝石如下解决了我的问题

gem install pg -- --with-pg-config=/usr/pgsql-x.x/bin/pg_config

郑重声明:

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

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

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

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