2017-01-22 6 views
0

私は同じAzure仮想マシン上にRailsアプリケーションとPostgreSQLを組み合わせようとしています。 this guideに続いてPostgreSQL 9.5をインストールしましたが、それだけで問題はないようです。今問題は、pg gemをインストールできないということです。具体的には、コマンドgem install pg -v '0.19.0'を実行している、それは私に次のエラーを与える:Azure:同じVM上のRailsとPostgreSQL?

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

current directory: /var/lib/gems/2.3.0/gems/pg-0.19.0/ext 
/usr/bin/ruby2.3 -r ./siteconf20170122-18144-1ee3id1.rb extconf.rb 
checking for pg_config... yes 
Using config values from /usr/bin/pg_config 
You need to install postgresql-server-dev-X.Y for building a server-side  extension or libpq-dev for building a client-side application. 
You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application. 
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/bin/$(RUBY_BASE_NAME)2.3 
     --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 

To see why this extension failed to compile, please check the mkmf.log which  can be found here: 

    /var/lib/gems/2.3.0/extensions/x86_64-linux/2.3.0/pg-0.19.0/mkmf.log 

extconf failed, exit code 1 

Gem files will remain installed in /var/lib/gems/2.3.0/gems/pg-0.19.0 for inspection. 
Results logged to /var/lib/gems/2.3.0/extensions/x86_64-linux/2.3.0/pg-0.19.0/gem_make.out 

すべてのヘルプは本当に感謝しています。乾杯

答えて

0

私のAzure Ubuntu VMにpostgresql-server-dev-9.5をインストールするだけで簡単でした。私はエラーログを見落としました:D

0

それはのようなものであればwhich pg_config

の応答は何である:中...

何にpg_configコマンド以下で再びインストールしてみてください:

は/ usr/binが/

sudo apt-get install postgresql-devel 
+0

'/ usr/bin/pg_config' – Simon

関連する問題