简体   繁体   English

Postgres未安装在Bundler中(Ruby on Rails)

[英]Postgres not installing in Bundler (Ruby on Rails)

I am getting pretty desperate, i have tried every answer on the subject but nothing seems to work. 我变得非常绝望,我已经尝试过有关该主题的所有答案,但似乎无济于事。

the error log looks like this: 错误日志如下所示:

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

    /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby -r ./siteconf20150523-16458-46bzoo.rb extconf.rb --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config
Using config values from /Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config
sh: /Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config: No such file or directory
sh: /Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config: No such file or directory
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
    --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

extconf failed, exit code 1

Gem files will remain installed in /Users/kevinegstorf/.rvm/gems/ruby-2.0.0-p643/gems/pg-0.18.2 for inspection.
Results logged to /Users/kevinegstorf/.rvm/gems/ruby-2.0.0-p643/extensions/universal-darwin-14/2.0.0/pg-0.18.2/gem_make.out
An error occurred while installing pg (0.18.2), and Bundler cannot continue.
Make sure that `gem install pg -v '0.18.2'` succeeds before bundling.

Installing gem install pg -v '0.18.2' gives me back the same error I hope someone can help me. 安装gem install pg -v'0.18.2'会给我同样的错误,希望有人可以帮助我。 tnx TNX

If you already install Postgres.app in Mac, you should copy /Applications/Postgres.app/Contents/Version/9.4/bin/pg_config to another place. 如果您已经在Mac中安装Postgres.app,则应将/Applications/Postgres.app/Contents/Version/9.4/bin/pg_config复制到另一个位置。 For example /home/pg_config 例如/home/pg_config

then run 然后跑

bundle config build.pg --with-pg-config=/home/pg_config
bundle install

You should find your pg_config file and add it to the build command: 您应该找到pg_config文件并将其添加到build命令中:

bundle config build.pg --with-pg-config=/usr/local/bin/pg_config

Since your pg_config file is located at /usr/local/bin/pg_config Did you try the command(edited) above? 由于您的pg_config文件位于/ usr / local / bin / pg_config中,您是否尝试过上面的命令(已编辑)?

If that doesn't help maybe try: 如果这样做没有帮助,请尝试:

env ARCHFLAGS="-arch x86_64" gem install pg

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

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