我使用的是Ruby on Rails 3.1预版本。我喜欢使用PostgreSQL,但问题是安装pg gem。它给了我以下错误:

$ gem install pg
Building native extensions.  This could take a while...
ERROR:  Error installing pg:
    ERROR: Failed to build gem native extension.

        /home/u/.rvm/rubies/ruby-1.9.2-p0/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
    --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=/home/u/.rvm/rubies/ruby-1.9.2-p0/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 /home/u/.rvm/gems/ruby-1.9.2-p0/gems/pg-0.11.0 for inspection.
    Results logged to /home/u/.rvm/gems/ruby-1.9.2-p0/gems/pg-0.11.0/ext/gem_make.out

我怎么解决这个问题?


当前回答

Ubuntu 20.04.1 LTS,这似乎对我有用:

sudo apt-get install ruby ruby-dev libpqxx-dev libpq-fe-dev libpq-dev 
sudo gem install pg -- --with-pg-config=/usr/include/postgresql/pg_config --with-pg-include=/usr/include/postgresql/

其他回答

步骤1)确保在您的系统中安装了postgress(如果它已经安装并且您可以在您的机器上运行postgress服务器,则移动到步骤(2)

apt-get install postgresql postgresql-contrib (sol - fatal error: libpq-fe.h: No such file or directory)
sudo apt-get install ruby-dev (required to install postgress below)
sudo gem install pg
sudo service postgresql restart

步骤2)一些c++文件试图直接访问libpq-fe.h,但无法找到。所以我们需要手动搜索每一个这样的文件,并将libpq-fe.h替换为postgresql/libpq-fe.h

在所有目录和子目录中搜索libpq-fe.h的命令是grep -rnw ./ -e 'libpq-fe.h'

3)进入“All file listed by command run in step 2”,使用postgresql/libpq-fe.h手动修改libpq-fe.h。

在macOS(以前的Mac OS X和OS X)上,使用Homebrew安装正确的头文件:

brew install postgresql

然后运行

gem install pg

应该工作。

或者,不安装整个postgresql,你可以酿造安装libpq并导出正确的PATH和PKG_CONFIG_PATH,如“警告”部分所述

只是缺少libpq-fe.h的问题

在ubuntu上,我们只需要运行: Sudo apt-get安装libpq-dev

上面的命令将安装一个新的包libpq-dev,之后你可以再次执行bundle install来继续你的包安装。

我在通过asdf安装postgres时遇到了同样的错误。pg-config解决方案对我不起作用。相反,我必须找到包含该文件的postgres include文件夹,并运行带有——with-pg-include标志的命令

gem install pg -- --with-pg-include=/<path>/.asdf/installs/postgres/<version>/include

对于alpine,请使用下面的方法来修复错误

apk add --no-cache postgresql-dev