-1

在 Mac OS X 10.6.8 上,尝试gem install pg. 试图将我的 Rails 网站推送到 Heroku。一个非常标准的 Ruby 1.9.3p194 安装。

$ cat /Users/me/.rvm/gems/ruby-1.9.3-p194\@ucode/gems/pg-0.15.1/ext/gem_make.out 
/Users/me/.rvm/rubies/ruby-1.9.3-p194/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=/Users/me/.rvm/rubies/ruby-1.9.3-p194/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

我以前从来不需要在本地安装 postgresql。我也需要安装数据库吗?事实上,我什至不打算在本地使用 postgresql,只是在 Heroku 上

4

1 回答 1

2

构建输出的第一行告诉您出了什么问题以及该怎么做:

No pg_config... trying anyway. If building fails, please try again with
 --with-pg-config=/path/to/pg_config

所以....传递--with-pg-config=/wherever/your/pg_config或添加它,PATH以便构建可以找到它。

我也强烈反对 mu 的评论;使用一个数据库进行本地测试并使用另一个数据库进行远程测试是痛苦、痛苦和部署错误的秘诀。如果 SQL 真的足够一致和标准以使其工作,那就太好了,但现实是不同的。

于 2013-05-22T23:51:57.087 回答