バンドルを実行しているとき、または個別にインストールしようとすると、pggemをインストールできません。私が得るエラーは、「Makefileを作成できませんでした」です。Mountain Lionを実行していて、Xcodeがインストールされており、コマンドラインツールがインストールされています。また、自作でPostregsqlをインストールしています。
エラーは、makefileを作成できないためだと思います。これは、他のことを行うのを妨げるエラーとして表面化しています。
私が得る完全なエラーは以下の通りです。
このエラーはバンドル中に発生します。他のgemが正常にインストールされているか、使用中としてマークされている場合、このエラーによりバンドルが終了します。installing pg (0.14.1) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
checking for pg_config... yes
Using config values from /usr/bin/pg_config
checking for libpq-fe.h... yes
checking for libpq/libpq-fs.h... yes
checking for pg_config_manual.h... yes
checking for PQconnectdb() in -lpq... no
checking for PQconnectdb() in -llibpq... no
checking for PQconnectdb() in -lms/libpq... no
Can't find the PostgreSQL client library (libpq)
*** 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=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/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
--with-pqlib
--without-pqlib
--with-libpqlib
--without-libpqlib
--with-ms/libpqlib
--without-ms/libpqlib
Gem files will remain installed in /Users/ericavirtue/.bundler/tmp/75812/gems/pg-0.14.1 for inspection.
Results logged to /Users/ericavirtue/.bundler/tmp/75812/gems/pg-0.14.1/ext/gem_make.out
An error occurred while installing pg (0.14.1), and Bundler cannot continue.
Make sure that `gem install pg -v '0.14.1'` succeeds before bundling.
私はここで何をすべきか本当に途方に暮れています。私はこれに2日間取り組んできました。
編集:
したがって、ソリューションを実装するためのパスを見つけようとしたときに、ChristianRappが提案したこの推奨事項を見つけました。sudo env ARCHFLAGS="-arch x86_64" gem install pg
これはpgのインストールに役立ちました。rails s
残念ながら、、、rake db:create:all
またはを実行しようとするとエラーが発生しrake db:migrate
ます。これらの問題を追跡するために、別の質問を作成します...