web-dev-qa-db-ja.com

gem install pg --with-pg-configは機能しますが、バンドルは失敗します

実行するとき(rootとして)

gem install pg -v '0.12.0' -- --with-pg-config=/usr/pgsql-9.1/bin/pg_config

次の出力が得られます。

#-> gem instal pg -v '0.12.0' -- --with-pg-config=/usr/pgsql-9.1/bin/pg_config
Building native extensions.  This could take a while...
Successfully installed pg-0.12.0
1 gem installed
Installing ri documentation for pg-0.12.0...
Installing RDoc documentation for pg-0.12.0...
#-> 

バンドルインストールを実行すると:

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

    /usr/local/rvm/rubies/Ruby-1.9.2-p290/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=/usr/local/rvm/rubies/Ruby-1.9.2-p290/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 /var/www/simpletrac/vendor/cache/Ruby/1.9.1/gems/pg-    0.12.0 for inspection.
Results logged to /var/www/simpletrac/vendor/cache/Ruby/1.9.1/gems/pg-0.12.0/ext/gem_make.out
An error occured while installing pg (0.12.0), and Bundler cannot continue.
Make sure that `gem install pg -v '0.12.0'` succeeds before bundling.

Libpq-fe.hを/usr/pgsql-9.1/include/libpq-fe.hにインストールしています。だから、試した

gem install pg -v '0.12.0' -- --with-pg-config=/usr/pgsql-9.1/bin/pg_config --with-pg-lib=/usr/pgsql-9.1/include/libpq-fe.h but still no go. 

どんな助けも大歓迎です。

また、postgresql91-develとRuby-develをインストールしました。 CentOS 6を実行しています。

69
YuKagi

bundle installを実行する前にこれを実行しようとしましたか?

bundle config build.pg --with-pg-config=/usr/pgsql-9.1/bin/pg_config

http://bundler.io/v1.3/bundle_config.html を参照してください

171

誰かがpostgresをインストールするためにmacportsを使用していて、pg_configを見つけるのに問題がある場合、これを試してください:

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

これが誰かの時間の節約に役立つことを願っています。乾杯!

18

Pg_configの場所が不明で、LinuxまたはMacを使用していると仮定すると、次のコマンドを実行できます。

which pg_config

これは==> /usr/pgsql-9.1/bin/pg_configを返します

このパスを次のように使用します

bundle config build.pg --with-pg-config=/usr/pgsql-9.1/bin/pg_config

今すぐbundle install

11

Libpq-devをインストールすることで修正された同じ問題がありました。

参照: https://bitbucket.org/ged/Ruby-pg/issue/83/help-gem-install-pg-failed-on-opensuse-1

7
TTT

コピーペースト:

bundle config build.pg --with-pg-config=`which pg_config` && bundle

詳細:

詳細については、次をご覧ください。

最初にすべきことは、Postgresに付属の「pg_config」ツールがパスにあることを確認することです。そうでない場合、またはパスの最初にあるのがビルド対象のPostgresでインストールされたものでない場合は、-with-pg-configオプションでパスを指定できます。

出典:https://github.com/ged/Ruby-pg/blob/1f274f68c16f1af1c642db1b9d3d28aef169dc84/ext/extconf.rb#L27

6
Inanc Gumus

私はMacにいるのでHomebrewを使用しているので、この問題を解決するためにpostgresqlをbrewでインストールしました:

brew install postgresql

そして、gemをインストールしました。

4
Billy Kovalsky

Pg_configがインストールされているがパスにない場合、このエラーが発生する可能性があります。 〜/ .bashrcのPATH envに追加できます。

例えば。

export PATH=${PATH}:/usr/pgsql-9.2/bin
4
AndyM

私はOS Xで私のものを修正するためにこれをしなければなりませんでした:

export PATH=/opt/local/lib/postgresql84/bin/:$PATH

そして、私はすでにこれを私の道に持っていたという事実にもかかわらず、それをしなければなりませんでした:

[user@foo ~] which psql84
/opt/local/bin/psql84

[user@foo ~] ls -altrh /opt/local/bin/psql84 
lrwxr-xr-x  1 root  admin    36B Dec  7 02:15 /opt/local/bin/psql84 ->  /opt/local/lib/postgresql84/bin/psql

この問題が別のMacユーザーに役立つことを願っています。

3
Luke Sheppard

Postgres gemはPostgres構成ファイルを見つけることができません。どこにあるかを伝える必要があります。私の意見では、これに対する最も楽しい解決策は、BrewとMacPortsをスキップして、Postgresアプリを使用することです。ここからダウンロードしてインストールします。

http://postgresapp.com/

次に、binフォルダーをパスに追加します。

PATH="/Applications/Postgres.app/Contents/MacOS/bin:$PATH"

これを〜/ .bash_profileに追加することもできます

次に、gemをインストールします。

gem install pg

スムーズに進むはずです。

3
superluminary

私はArch Linuxを使用していますが、同様の問題を抱えていました。中古 Sudo pacman -S libpqxxそして再実行してからpg gemをインストールしてからbundle install再び、そして今回はようやく機能しました!

この link の使用を推奨:

gem install pg --pre

pg gemを数日間インストールできませんでしたが、この方法はようやくうまくいきました。これが役に立てば幸いです。

1
NickJ987

これを試して:

yum install libpqxx-devel

Postgr9.2で動作します。

1
MaciejO

Macでpostgresappを使用する場合は、 http://postgresapp.com/documentation/cli-tools.html のドキュメントを読んで、$ PATHを設定します。この前に、バンドルのインストールを再度実行してください。

1
Roberto Capelo

oSXでは、最初にpgをインストールします。

brew install postgresql

次に、gem installを実行します。

gem install pg --source 'https://rubygems.org/'

その後、bundle installを実行できます

0
matrik

Postgressがインストールされていることを確認してください。最初にインストールしない場合。たとえば、ターミナルを使用します。

brew install postgresql

その実行後

bundle install
0
Ronny Kibet
gem install pg -v '0.17.1'

私のためにトリックをしました。

0
gabemartinez

UBUNTUのいくつかのケース

Sudo apt-get install libpq-dev

CentOS 7で

Sudo yum install postgresql-devel

それから

bundle install

これは私のために働いた。

0