0

bundle update(レールをインストールできるように)実行しましたが、次のエラーが発生しました:

$ bundle update
..... < other stuff ....>
Installing pg (0.14.1) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        /Users/user/.rvm/rubies/ruby-1.9.3-p374/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.

私はRubyこれに不慣れで、誰かがここで何が悪いのか教えてもらえますか?これはOSX上にあります

4

1 に答える 1

2

必ず最初にpostgresをインストールしてください。Macパッケージマネージャーであるhomebrewを介してそうすることをお勧めします。

brew install postgresql

これは、Macにpostgresをインストールする方法に関する多くのチュートリアルの1つです。

編集

gemがpostgres構成を見つけられないようです。これが、問題に似た答えです。

https://stackoverflow.com/a/9669523/277370

于 2013-02-13T19:04:13.800 に答える