我正在尝试安装 psycopg2 以在我的 django 项目的后端使用 postgresql 数据库,但每次运行pip install psycopg2
命令时都会收到错误消息:
Error: pg_config executable not found.
pg_config is required to build psycopg2 from source. 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'.
我已将包含该文件的 \bin\ 文件夹添加到我的路径中,我也运行了该pip install psycopg2-binary
命令,并且我已经在我的计算机上卸载并重新安装了 posgresql,我还运行了python setup.py build_ext
错误消息中提到的命令,并且这个错误仍然弹出。我在 Windows 10 操作系统上运行并使用 posgresql 13.1。有什么建议么?
编辑:这是我在终端中遇到的错误: