1

'bundle install'を実行しているときに、突然この問題が発生します。すべてが正しくインストールされているようですが、他の多くの人と同じように、「pg」で問題が発生します。メッセージにあるように、'gem install pg-' 0.12.2''を実行しようとしましたが、それでも失敗します。

私はSnowLeopard10.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

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 に答える