4

新しい Rails アプリで pg gem をインストールしようとしていますが、同じエラーが表示され続けます。

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

        /home/arthur/.rvm/rubies/ruby-1.9.2-p320/bin/ruby extconf.rb --with-pg-lib=/usr/lib
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.

私はすでにこの質問からすべてを試しました: How to install PostgreSQL's pg gem on Ubuntu? しかし、私にとっては何もうまくいきませんでした。

ちなみに、これは ruby​​ 1.9.2 と Rails 3.2 です。

ありがとう

4

1 に答える 1

1

postgresql 9 をインストールしてから、gem をインストールします。

sudo apt-get install postgresql libpq-dev

さあ、走って

gem install pg

その後

バンドル インストール

于 2013-04-15T10:36:07.090 に答える