1

运行“捆绑安装”时,我突然遇到了这个问题。一切似乎都正确安装,但后来我遇到了“pg”的问题,就像许多其他人似乎做的那样。正如消息所说,我尝试运行'gem install pg - '0.12.2'',但它仍然失败。

我在 Snow Leopard 10.6 上,这是我得到的错误:

Installing pg (0.12.2) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /Users/thomaskim/.rvm/rubies/ruby-1.9.3-p327/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
    --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/thomaskim/.rvm/rubies/ruby-1.9.3-p327/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 /Users/thomaskim/.bundler/tmp/1336/gems/pg-0.12.2 for inspection.
Results logged to /Users/thomaskim/.bundler/tmp/1336/gems/pg-0.12.2/ext/gem_make.out
An error occurred while installing pg (0.12.2), and Bundler cannot continue.
Make sure that `gem install pg -v '0.12.2'` succeeds before bundling.
4

3 回答 3

2

首先,您需要确保安装了命令行工具(Xcode 软件包)。由于您使用的是旧版本的 OSX - 您将不得不研究如何做到这一点。

比,使用 homebrew install postgress

brew install postgres 

在那之后,一切都应该毫无问题地捆绑在一起。

于 2014-06-20T03:41:30.657 回答
1

您似乎没有正确安装 postgres。当我尝试使用 npm 安装 pg 模块时,我遇到了类似的错误。正确安装 postgres 后它消失了。这是一个下载链接:http ://www.postgresql.org/download/macosx/

于 2012-12-29T22:29:14.940 回答
1

如果您仅在开发模式下在您的机器上运行 rails 并为此使用 sql lite,则无需安装生产包。

因此,如果您的 gemfile 看起来像这样:

group :production do
  gem 'pg'
end

尝试使用以下命令安装捆绑包:

gem install --without production
于 2012-12-29T22:53:25.397 回答