gpt4 book ai didi

python - Mac + virtualenv + pip + postgresql = 错误 : pg_config executable not found

转载 作者:IT老高 更新时间:2023-10-28 21:34:08 29 4
gpt4 key购买 nike

我试图为教程安装 postgres,但 pip 给了我错误:

pip install psycopg

我得到的错误片段:

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'.

我的 virtualenv 中的 pg_config 在哪里?如何配置它?我使用 virtualenv 是因为我不想在系统范围内安装 postgres。

最佳答案

在 Mac 上,如果您使用的是 Postgres.app , pg_config 文件在你的 /Applications/Postgres.app/Contents/Versions/<current_version>/bin目录。这需要添加到您的系统路径以修复此错误,如下所示:

export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/<current_version>/bin

例如,如果当前 Postgres.app 版本是 9.5,则此导出行将是:

export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/9.5/bin

对于更新版本的 Postgres.app (> 9.5?),您可以简单地添加“最新”来代替版本号,如下所示:

export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin

关于python - Mac + virtualenv + pip + postgresql = 错误 : pg_config executable not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20170895/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com