pg_config可执行文件未找到。
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日