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

我怎么解决这个问题?


当前回答

在OS X 10.9 (Mavericks)上,我自定义安装了postgresql,然后我必须rvm重新安装Ruby。我现在很开心:)

其他回答

Mac用户使用Postgres的正确答案。应用程序是根据该包提供的libpq构建的。例如,对于9.4版本(撰写本文时的最新版本),您所需要的是:

export CONFIGURE_ARGS="with-pg-include=/Applications/Postgres.app/Contents/Versions/9.4/include"
gem install pg

这将使你的pg gem与你安装的PostgreSQL版本保持同步。在这种情况下,安装Homebrew软件是一种浪费。

只有卸载(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。

我也遇到过类似的问题,这个方法帮我解决了问题:

gem install do_postgres -- --with-pgsql-server-dir=/Applications/Postgres.app/Contents/MacOS --with-pgsql-server-include=/Applications/Postgres.app/Contents/MacOS/include/server

来源:

https://gist.github.com/oisin/6562181

我刚刚在OSX上运行了brew和postgres@9.4。

我的解决方案是这样的:

CONFIGURE_ARGS="with-pg-include=/usr/local/opt/postgresql@9.4/include/" bundle install