简体   繁体   English

在postgresql gem上捆绑安装失败。 (是的,安装了postgres)

[英]Bundle install fails on postgresql gem. (Yes postgres is installed)

I'm trying to run bundle install on a new machine. 我正在尝试在新计算机上运行捆绑安装。 I just installed postgres.app and restarted terminal. 我刚刚安装了postgres.app并重新启动了终端。 running bundle install in my app returns this error. 在我的应用中运行捆绑安装会返回此错误。

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby extconf.rb
checking for pg_config... yes
Using config values from /usr/local/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
    --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=/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/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}/
    --with-pqlib
    --without-pqlib
    --with-libpqlib
    --without-libpqlib
    --with-ms/libpqlib
    --without-ms/libpqlib


Gem files will remain installed in /var/folders/1p/11m5t6_j76xddb5wrkckgn8m0000gp/T/bundler20150524-32619-10b4nv5pg-0.18.1/gems/pg-0.18.1 for inspection.
Results logged to /var/folders/1p/11m5t6_j76xddb5wrkckgn8m0000gp/T/bundler20150524-32619-10b4nv5pg-0.18.1/gems/pg-0.18.1/ext/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.

Would be grateful for any suggestions on how to solve this. 对于如何解决此问题的任何建议将不胜感激。 Thanks for your time! 谢谢你的时间!

I think, if you install this package libpq-dev , it helps. 我认为,如果您安装此软件包libpq-dev ,它会libpq-dev帮助。 You can install it like: sudo apt-get install libpq-dev . 您可以像这样安装它: sudo apt-get install libpq-dev For further information, you can check out this website as well: https://gorails.com/setup/ubuntu/15.04 . 有关更多信息,您也可以访问以下网站: https : //gorails.com/setup/ubuntu/15.04

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM