実行するとき(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を実行しています。
bundle install
を実行する前にこれを実行しようとしましたか?
bundle config build.pg --with-pg-config=/usr/pgsql-9.1/bin/pg_config
誰かがpostgresをインストールするためにmacportsを使用していて、pg_configを見つけるのに問題がある場合、これを試してください:
bundle config build.pg --with-pg-config=/opt/local/lib/postgresql91/bin/pg_config
これが誰かの時間の節約に役立つことを願っています。乾杯!
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
Libpq-devをインストールすることで修正された同じ問題がありました。
参照: https://bitbucket.org/ged/Ruby-pg/issue/83/help-gem-install-pg-failed-on-opensuse-1
bundle config build.pg --with-pg-config=`which pg_config` && bundle
詳細については、次をご覧ください。
- http://bundler.io/v1.3/man/bundle-config.1.html
- https://github.com/nlopes/pg/blob/master/readme-os_x.rdoc
最初にすべきことは、Postgresに付属の「pg_config」ツールがパスにあることを確認することです。そうでない場合、またはパスの最初にあるのがビルド対象のPostgresでインストールされたものでない場合は、-with-pg-configオプションでパスを指定できます。
出典:https://github.com/ged/Ruby-pg/blob/1f274f68c16f1af1c642db1b9d3d28aef169dc84/ext/extconf.rb#L27
私はMacにいるのでHomebrewを使用しているので、この問題を解決するためにpostgresqlをbrewでインストールしました:
brew install postgresql
そして、gemをインストールしました。
Pg_configがインストールされているがパスにない場合、このエラーが発生する可能性があります。 〜/ .bashrcのPATH envに追加できます。
例えば。
export PATH=${PATH}:/usr/pgsql-9.2/bin
私は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ユーザーに役立つことを願っています。
Postgres gemはPostgres構成ファイルを見つけることができません。どこにあるかを伝える必要があります。私の意見では、これに対する最も楽しい解決策は、BrewとMacPortsをスキップして、Postgresアプリを使用することです。ここからダウンロードしてインストールします。
次に、binフォルダーをパスに追加します。
PATH="/Applications/Postgres.app/Contents/MacOS/bin:$PATH"
これを〜/ .bash_profileに追加することもできます
次に、gemをインストールします。
gem install pg
スムーズに進むはずです。
私はArch Linuxを使用していますが、同様の問題を抱えていました。中古 Sudo pacman -S libpqxx
そして再実行してからpg gemをインストールしてからbundle install
再び、そして今回はようやく機能しました!
これを試して:
yum install libpqxx-devel
Postgr9.2で動作します。
Macでpostgresappを使用する場合は、 http://postgresapp.com/documentation/cli-tools.html のドキュメントを読んで、$ PATHを設定します。この前に、バンドルのインストールを再度実行してください。
oSXでは、最初にpgをインストールします。
brew install postgresql
次に、gem installを実行します。
gem install pg --source 'https://rubygems.org/'
その後、bundle install
を実行できます
Postgressがインストールされていることを確認してください。最初にインストールしない場合。たとえば、ターミナルを使用します。
brew install postgresql
その実行後
bundle install
gem install pg -v '0.17.1'
私のためにトリックをしました。
UBUNTUのいくつかのケース
Sudo apt-get install libpq-dev
CentOS 7で
Sudo yum install postgresql-devel
それから
bundle install
これは私のために働いた。