3

Ruby 1.9.3-p286 に「pg」gem をインストールしようとしましたが (失敗しました)、何も動作しないようです。

私はすでにpostgresql(9.1)、libpq-dev、およびpostgresql-server-dev-9.1などの他のいくつかをインストールしました。「with-pg-config」フラグをgemインストールに渡そうとしましたが、何も機能していないようです。

gem をインストールしようとするたびに、次のように出力されます。

Building native extensions.  This could take a while...
ERROR:  Error installing pg:
    ERROR: Failed to build gem native extension.

        /home/lynux/.rvm/rubies/ruby-1.9.3-p286/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
    --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=/home/lynux/.rvm/rubies/ruby-1.9.3-p286/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 /home/lynux/.rvm/gems/ruby-1.9.3-p286@phisiodata/gems/pg-0.14.1 for inspection.
Results logged to /home/lynux/.rvm/gems/ruby-1.9.3-p286@phisiodata/gems/pg-0.14.1/ext/gem_make.out

私は何を間違っていますか?gem をインストールする前に他にすべきことはありますか?

前もって感謝します。

[編集]

わかりましたので、joelparkerhendersonの答えは、パスとライブラリに何か問題があるのではないかと思い、もう少し掘り下げました..

この素晴らしい投稿を見つけて解決しました!基本的に、問題は RVM にあります。だから、私の問題は解決しました。同じことに苦しむ可能性のある人は、リンクをたどってください!

4

1 に答える 1

2

あなたのエラーはあなたが行方不明のようですlibpq-dev

最初に Postgres をシステムにインストールしようとしていますか?

これを試して:

sudo apt-get install postgresql postgresql-client postgresql-server-dev-all libpq-dev

次に、pg gem を root としてインストールできますか?

sudo su - root
gem install pg
于 2012-12-02T19:09:52.953 に答える