pg_config可执行文件未找到。

5 浏览
0 Comments

pg_config可执行文件未找到。

我在安装psycopg2时遇到了问题。当我尝试使用pip install psycopg2时,我收到以下错误信息:

Error: pg_config executable not found.
Please add the directory containing pg_config to the PATH
or specify the full executable path with the option:
    python setup.py build_ext --pg-config /path/to/pg_config build ...
or with the pg_config option in 'setup.cfg'.
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /tmp/pip-build/psycopg2

但问题是pg_config实际上在我的PATH中;它可以正常运行:

$ which pg_config
/usr/pgsql-9.1/bin/pg_config

我尝试将pg_config路径添加到setup.cfg文件中并使用我从网站下载的源文件进行构建(http://initd.org/psycopg/),但我收到了以下错误信息!

Error: Unable to find 'pg_config' file in '/usr/pgsql-9.1/bin/'

但它实际上就在那里!

我对这些错误感到困惑。能否有人帮助一下?

顺便说一下,我所有的命令都使用了sudo。另外,我使用的是RHEL 5.5。

admin 更改状态以发布 2023年5月23日
0
0 Comments

在Mac OS X上,我使用homebrew软件包管理器解决了这个问题。\n

brew install postgresql

0
0 Comments

pg_configpostgresql-devel 包中(在 Debian/Ubuntu 上是 libpq-dev,在 Centos/Fedora/Cygwin/Babun 上是 libpq-devel)。

0