我使用的是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

我怎么解决这个问题?


当前回答

对于AltLinux,是postgresqlx包。X-devel(在我的例子中是postgresql9.5-devel)必须安装:

apt-get install postgresql9.5-devel

其他回答

步骤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。

我已经尝试了所有的解决方案,但只在命令下工作

pip install psycopg2-binary

在debian的靶心上,没有一个现有的答案能解决我的问题。

以防它能帮助和我配置相同的人:

使用PostgreSQL的apt存储库:https://wiki.postgresql.org/wiki/Apt 将PostgreSQL从v13升级到v14 Sudo apt-get安装libpq-dev Gem安装pg或bundle安装

我在亚马逊Linux上也遇到了同样的问题。我可以找到libpq-fe.h头文件,但不知为何它不起作用。

它来自不同用户在机器上安装的不同版本的软件包。安装PostgreSQL 9.2和PostgreSQL 9.3。因此,在包含库之前,请确保您的PostgreSQL版本。

对我来说,神奇的命令行是:

sudo yum install postgresql93 postgresql93-server postgresql93-libs postgresql93-contrib postgresql93-devel

资料来源:用Yum安装PostgreSQL 9.3、PostGIS 2.1和p注浆的白痴指南

在CentOS 6.5(挤压)下,我创建了一个文件:

$ sudo touch /etc/profile.d/psql.sh

与内容:

pathmunge /usr/pgsql-9.3/bin

注意这里,你应该用pg_config文件设置你的PostgreSQL路径。你可以通过以下命令找到:

$ sudo find / -iname pg_config

保存文件:

$ sudo chmod +x /etc/profile.d/ruby.sh

然后再试着执行你的命令。

注意:任何时候你改变Bash配置-改变概要文件。d配置-您应该重新加载Bash。