web-dev-qa-db-ja.com

bundle installを実行するときに、gemインストールのパラメーターを渡すにはどうすればよいですか?

pg gem をgemfileに追加しました

gem 'pg'

bundle installを実行すると、次のエラーが発生します。

Installing pg (0.10.1) with native extensions /Users/ben/.rvm/rubies/Ruby-1.9.2-p0/lib/Ruby/1.9.1/rubygems/installer.rb:483:in `rescue in block in build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)

/Users/benhartney/.rvm/rubies/Ruby-1.9.2-p0/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.

この構成パラメーターを渡す必要があるようです

 --with-pg-config=/path/to/pg_config

bundle installを使用する場合、どうすればよいですか?

62
ben

次のようにビルド構成オプションを設定する必要があります。

bundle config build.pg --with-pg-config=/path/to/pg_config

詳細は bundle config manページ にあります

84
idlefingers

「バンドルインストール」の前に「バンドル構成」を実行して、パラメーターを設定します。

bundle config build.pg --with-pg-config=/path/to/pg_config
bundle install
15
Mark

RailsおよびPostgreSQLを使用します。私はこれが好きです

>Rails new test_app -d postgreSQL
>cd test_app
>mkdir .bundle
>echo "BUNDLE_BUILD__PG: --with-pg-config=/opt/local/lib/postgresql91/bin/pg_config" > .bundle/config
>bundle install

そのため、ソース管理で構成を維持できます。

ユーザーのプロファイル用

bundle config build.pg --with-pg-config=/opt/local/lib/postgresql91/bin/pg_config

これにより〜/ .bundle/configファイルが作成されます。

9
Jirapong

Ruby 2.x以降を使用している場合、thrift 0.9.0を使用してビルドすることはできません。詳細は https://issues.Apache.org/jira/ browse/THRIFT-2219 。Thrift 0.9.2が修正されました。

インストールしてみてください:gem install rbhive -v 1.0.3.pre

0
0bserver07