gem install pg --with-pg-config有效,捆绑失败


72

当我运行时(以root用户身份)

gem install pg -v '0.12.0' -- --with-pg-config=/usr/pgsql-9.1/bin/pg_config

我得到以下输出:

#-> gem instal pg -v '0.12.0' -- --with-pg-config=/usr/pgsql-9.1/bin/pg_config
Building native extensions.  This could take a while...
Successfully installed pg-0.12.0
1 gem installed
Installing ri documentation for pg-0.12.0...
Installing RDoc documentation for pg-0.12.0...
#-> 

当我运行捆绑安装时:

Installing pg (0.12.0) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

    /usr/local/rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb 
checking for pg_config... no
No pg_config... trying anyway. If building fails, please try again with
--with-pg-config=/path/to/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
--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-1.9.2-p290/bin/ruby
--with-pg
--without-pg
--with-pg-dir
--without-pg-dir
--with-pg-include
--without-pg-include=${pg-dir}/include
--with-pg-lib
--without-pg-lib=${pg-dir}/lib
--with-pg-config
--without-pg-config
--with-pg_config
--without-pg_config


Gem files will remain installed in /var/www/simpletrac/vendor/cache/ruby/1.9.1/gems/pg-    0.12.0 for inspection.
Results logged to /var/www/simpletrac/vendor/cache/ruby/1.9.1/gems/pg-0.12.0/ext/gem_make.out
An error occured while installing pg (0.12.0), and Bundler cannot continue.
Make sure that `gem install pg -v '0.12.0'` succeeds before bundling.

我在/usr/pgsql-9.1/include/libpq-fe.h中安装了libpq-fe.h。所以,我尝试

gem install pg -v '0.12.0' -- --with-pg-config=/usr/pgsql-9.1/bin/pg_config --with-pg-lib=/usr/pgsql-9.1/include/libpq-fe.h but still no go. 

任何帮助将不胜感激。

另外,我已经安装了postgresql91-devel和ruby-devel。运行CentOS 6。

Answers:


181

您是否尝试过在运行之前运行它bundle install

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

参见http://bundler.io/v1.3/bundle_config.html


如果您使用的是MacOS + MacPorts,请参阅Lester的帖子以获取解决方案。
马提亚斯(Matthias)2012年

我有同样的错误,但是我正在使用mysql数据库。命令是什么?
KK Patel


2
在CentOS 6上像魅力一样运作!只需要yum install postgresql-devel在整个安装完全成功之前就运行一次!
Andrea Salicetti 2015年

1
同时--with-pg-dir=/usr/pgsql-<version>处理config和lib。
rdupz

18

如果有人使用macports安装postgres并在找到其pg_config时遇到问题,请尝试以下操作:

bundle config build.pg --with-pg-config=/opt/local/lib/postgresql91/bin/pg_config

我希望这可以帮助某人节省一些时间。干杯!


13

如果不确定pg_config在哪里,并且假设您使用的是Linux或Mac,则可以运行以下命令:

which pg_config

这将返回==> /usr/pgsql-9.1/bin/pg_config

现在将此路径用作

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

现在完成 bundle install



6

复制粘贴:

bundle config build.pg --with-pg-config=`which pg_config` && bundle

细节:

请访问以获取更多信息:

您应该做的第一件事是确保Postgres随附的“ pg_config”工具在您的路径中。如果不是,或者路径中的第一个不是要针对其构建的Postgres所安装的路径,则可以使用–with-pg-config选项指定其路径。

来源: https : //github.com/ged/ruby-pg/blob/1f274f68c16f1af1c642db1b9d3d28aef169dc84/ext/extconf.rb#L27


4

如果您安装了pg_config,但是没有在任何路径中,则可以得到此错误。您可以将它添加到〜/ .bashrc中的PATH环境中。

例如。

export PATH=${PATH}:/usr/pgsql-9.2/bin

这可能是从源而非软件包管理器安装的结果吗?无论如何都为我工作-很好奇为什么会遇到这个问题。
FantasticSponge 2014年

4

Postgres gem找不到Postgres配置文件。您需要告诉它它在哪里。我认为,最有趣的解决方案是跳过Brew和MacPorts,而仅使用Postgres应用程序。从此处下载并安装:

http://postgresapp.com/

现在将bin文件夹添加到您的路径:

PATH="/Applications/Postgres.app/Contents/MacOS/bin:$PATH"

您可能还希望将其添加到您的〜/ .bash_profile中

现在安装gem:

gem install pg

它应该顺利进行。


4

我在Mac上并且使用Homebrew,因此为了解决此问题,我刚刚在brew中安装了postgresql:

brew install postgresql

然后安装宝石。


3

我必须这样做才能在OS X上修复我的问题:

export PATH=/opt/local/lib/postgresql84/bin/:$PATH

尽管我已经在自己的道路上遇到了这个问题,但我还是必须这样做:

[user@foo ~] which psql84
/opt/local/bin/psql84

[user@foo ~] ls -altrh /opt/local/bin/psql84 
lrwxr-xr-x  1 root  admin    36B Dec  7 02:15 /opt/local/bin/psql84 ->  /opt/local/lib/postgresql84/bin/psql

我希望这可以帮助其他Mac用户解决此问题。


谢谢,我已经在Mac Yosemite上测试了此解决方案。
newguy

2

我正在使用Arch Linux,并且遇到类似的问题。使用sudo pacman -S libpqxx并重新运行,然后安装pg gem,然后bundle install再次运行,这次终于可以了!


我也使用Arch Linux,这解决了我的问题!
弗朗西斯·马洛赫

2016年,postgresql 9.5和pg 0.18.4似乎不适用于上述解决方案(我也在使用arch linux)。
费尔南多·巴索



1

链接建议使用:

gem install pg --pre

我无法pg gem安装数天,但是这种方法终于对我有用。希望这会有所帮助。



0

确保已安装Postgress。如果不先安装。以终端为例。

brew install postgresql

在那之后

bundle install


0

在OSX中,首先安装pg:

brew install postgresql

其次,进行gem安装:

gem install pg --source 'https://rubygems.org/'

然后你可以跑 bundle install


-1

我正在使用mac,并且不想在本地安装postgresql。

安装libpq并设置bundler config对我有用。

参考链接

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.