安装 sudo 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-MlE79I/psycopg2/
我操作如下后解决:
sudo apt-get build-dep fcitx
sudo apt-get install libpq-dev python-dev
sudo apt-get install postgresql
本文解决在安装psycopg2时遇到的错误:pg_config executable not found。通过安装libpq-dev、python-dev和postgresql解决了问题。
784

被折叠的 条评论
为什么被折叠?



