2016-01-17 89 views
1

當試圖捆綁運行安裝我收到以下錯誤不能捆綁PostgreSQL的

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

    current directory: /Users/seque1990/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/pg-0.18.4/ext 
/Users/seque1990/.rbenv/versions/2.2.2/bin/ruby -r ./siteconf20160117-46131-1dmnnnq.rb extconf.rb --with-pg-config=/opt/local/lib/postgresql91/bin/pg_config 
Using config values from /opt/local/lib/postgresql91/bin/pg_config 
sh: /opt/local/lib/postgresql91/bin/pg_config: No such file or directory 
sh: /opt/local/lib/postgresql91/bin/pg_config: No such file or directory 
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=/Users/seque1990/.rbenv/versions/2.2.2/bin/$(RUBY_BASE_NAME) 
    --with-pg 
    --without-pg 
    --enable-windows-cross 
    --disable-windows-cross 
    --with-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: 

    /Users/seque1990/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/extensions/x86_64-darwin-15/2.2.0-static/pg-0.18.4/mkmf.log 

extconf failed, exit code 1 

Gem files will remain installed in /Users/seque1990/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/pg-0.18.4 for inspection. 
Results logged to /Users/seque1990/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/extensions/x86_64-darwin-15/2.2.0-static/pg-0.18.4/gem_make.out 

讓我做沖泡安裝PostgreSQL後,但它告訴我,它已經安裝,但沒有聯繫。

然後我試圖沖泡鏈接PostgreSQL的,但它告訴我:

錯誤:無法符號鏈接共享/人/ man3/SPI_connect.3 在/ usr/local/share下/人/ man3不可寫。

不確定如何繼續。 :(

回答

1

如果您使用Ubuntu的機器,那麼,

sudo apt-get install postgresql 
sudo apt-get install libpq-dev 

,然後gem install pg

的OSX,你需要指定pg_config路徑

gem install pg -- --with-pg-config=`which pg_config` 

which pg_config給你的文件它的安裝路徑