我正在学习如何使用Postgres和Python(sqlalchemy)。我在安装psycopg2
时陷入困境。我有以下错误:
pg_config executable not found error
我知道这是一个非常常见的错误,已经有很多答案,但我无法找到任何帮助我解决问题的方法。
我特别理解answers:
通过附加。将Postgres的路径添加到.profile文件中 以下内容:
PATH="/Applications/Postgres.app/Contents/Versions/latest/bin:$PATH"
这是什么意思?我该怎么办?
我也尝试在终端输入which -a pg_config
但没有任何反应。
非常感谢!
答案 0 :(得分:1)
通过输入
解决了问题PATH="/Applications/Postgres.app/Contents/Versions/latest/bin:$PATH"
在安装psycopg2
之前进入终端窗口。