gem install pg --with-pg-config工作,bundle失败

时间:2012-02-10 21:20:35

标签: postgresql rubygems bundler pg

WhenI run(as 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...
#-> 

当我运行bundle install时:

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。

18 个答案:

答案 0 :(得分:166)

您是否尝试在运行bundle install之前运行此功能?

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

请参阅http://bundler.io/v1.3/bundle_config.html

答案 1 :(得分:18)

如果有人使用macports来安装postgres并且在查找pg_config时遇到问题,请试试这个:

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

我希望这有助于节省一些时间。干杯!

答案 2 :(得分:11)

如果您不确定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

答案 3 :(得分:7)

有同样的问题,通过安装libpq-dev修复。

参考:https://bitbucket.org/ged/ruby-pg/issue/83/help-gem-install-pg-failed-on-opensuse-103

答案 4 :(得分: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

  

答案 5 :(得分:4)

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

例如。

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

答案 6 :(得分:4)

我在Mac上使用Homebrew,所以为了解决这个问题,我刚刚用brew安装了postgresql:

brew install postgresql

然后安装了宝石。

答案 7 :(得分: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用户解决这个问题。

答案 8 :(得分:3)

Postgres gem无法找到Postgres配置文件。你需要告诉它它在哪里。在我看来,最令人愉快的解决方案是跳过Brew和MacPorts并使用Postgres应用程序。从这里下载并安装:

http://postgresapp.com/

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

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

您可能还希望将此添加到〜/ .bash_profile

现在安装gem:

gem install pg

它应该顺利进行。

答案 9 :(得分:2)

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

答案 10 :(得分:1)

link建议使用:

gem install pg --pre

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

答案 11 :(得分:1)

何时在Mac上使用postgresapp,请阅读http://postgresapp.com/documentation/cli-tools.html文档和配置$ PATH。在此之前尝试再次运行bundle install。

答案 12 :(得分:1)

试试这个:

yum install libpqxx-devel

适用于Postgr9.2。

答案 13 :(得分:0)

gem install pg -v '0.17.1'

为我做了诀窍。

答案 14 :(得分:0)

确保安装了postgress。如果不是先安装它。以终端为例。

brew install postgresql

在那之后

bundle install

答案 15 :(得分:0)

UBUNTU上的Somes案件

sudo apt-get install libpq-dev

在CentOS 7上

sudo yum install postgresql-devel

然后

bundle install

这对我有用。

答案 16 :(得分:0)

在OSX中,首先安装pg:

brew install postgresql

第二次,安装gem:

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

然后您可以运行bundle install

答案 17 :(得分:-1)

我使用的是Mac,不想在本地安装postgresql。

安装 libpq 并设置捆绑程序配置对我有用。

Reference link