web-dev-qa-db-ja.com

rails 4.2.0:ubuntu14.04にpggemをインストールできません

最近、rail 3.2 *アプリケーションをRails 4.2。*にアップグレードしようとしました。しかし、'pg' gemのインストール中に停止しました。グーグルで検索すると、次のような解決策があります。主にOSXにのみ関連していますが、私はubuntu14.04を使用しています。以下の問題について何か提案が必要です。

マシンにpostgresql 9.3.5バージョンをインストールしました。

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    /usr/local/rvm/rubies/Ruby-2.1.2/bin/Ruby extconf.rb 
checking for pg_config... yes
Using config values from /usr/bin/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
    --without-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-2.1.2/bin/Ruby
    --with-pg
    --without-pg
    --enable-windows-cross
    --disable-windows-cross
    --with-pg-config
    --without-pg-config
    --with-pg_config
    --without-pg_config
    --with-pg-dir
    --without-pg-dir
    --with-pg-include
    --without-pg-include=${pg-dir}/include
    --with-pg-lib
    --without-pg-lib=${pg-dir}/lib

extconf failed, exit code 1

Gem files will remain installed in /usr/local/rvm/gems/Ruby-2.1.2@r4/gems/pg-0.18.1 for inspection.
Results logged to /usr/local/rvm/gems/Ruby-2.1.2@r4/extensions/x86_64-linux/2.1.0/pg-0.18.1/gem_make.out
An error occurred while installing pg (0.18.1), and Bundler cannot continue.
Make sure that `gem install pg -v '0.18.1'` succeeds before bundling.
14
Mr. Black

PostgreSQLのヘッダーを含むpostgreSQLdevパッケージをインストールする必要があります

Sudo apt-get install libpq-dev

あなたも試すことができます

Sudo apt-get install postgresql-client
Sudo apt-get install postgresql postgresql-contrib
31
Hardik Hardiya

Ubuntu14.04のpostgresql9.4でgem install pg -v 0.18.1しようとすると、この正確な問題が発生しました。

Sudo apt-get install libpq-dev build-essential postgresql-server-dev-9.4

基本的に私はpostgresql-server-dev-${version}が欠けていました

あなたの場合は試してみてください

Sudo apt-get install libpq-dev build-essential postgresql-server-dev-9.3
11
Ryan Rauh

Ubuntu16.04でこのコマンドに従ってください

Sudo apt install libpq-dev postgresql-server
Sudo -u postgres createuser -s $(whoami); createdb $(whoami)
gem install pg
0
riguang zheng