在尝试安装或使用psycopg2库时遇到“Error: pg_config executable not found”的错误,通常意味着你的系统中没有安装PostgreSQL的开发工具,或者其安装路径没有被正确添加到系统的环境变量中。以下是根据你的需求提供的详细解决方案: 确认PostgreSQL是否已安装: 如果你在Linux系统上,可以使用如下命令来检查PostgreSQL是否已...
PG_CONFIG是postgresql的配置文件,如果找不到可能是没有安装postgresql,或者配置文件位置不正确,或者没有该配置, 安装sudo pip3 install psycopg2是报错: PG_CONFIG Executable Not Found 检查发现没有安装postgresql, 通过:sudo apt-get install -y postgresql 安装后解决...
将/path/to/pg_config替换为实际的pg_config路径。然后,你可以再次尝试安装psycopg2: pip install psycopg2 如果仍然出现“Error: pg_config executable not found.”的错误,那么可能是你的Python环境与PostgreSQL版本不兼容。你可以尝试创建一个新的Python虚拟环境,并在这个新环境中安装psycopg2。以下是创建新的Python虚...
1.报错截图 2.解决办法 yum install postgresql-devel* 3.使用 pip install psycopg2-binary 安装即可 4.如果,还是安装失败的话,并且你的python 是3.x版本, 你可以试试命令:pip3 install psycopg2-binary
ERROR:Command errored outwithexit status1:command:/usr/bin/python3-c'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-58o5cccu/psycopg2/setup.py'"'"'; __file__='"'"'/tmp/pip-install-58o5cccu/psycopg2/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"'...
尝试执行以下操作时出现以下错误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_...
Mac 安装psycopg2出错:Error:pg_config executable not found的解决,解决方法forMacOSX(没有安装过Postgres.app)安装postgresql:(在你找到相...
用python3 -m pip install psycopg2 -i https://mirrors.aliyun.com/pypi/simple/命令安装psycopg2模块时出现两个错误 错误1: Error:pg_config executable not found.pg_config is required to build psycopg2fromsource.Please add the directory containing pg_config to the $PATHor specify the full executable...
python setup.py build_ext --pg-config/path/to/pg_configbuild ... or with the pg_config optionin'setup.cfg'. error: Setup script exited with 1 psycopg2 安装的时候报错如上。 解决方法:PATH=$PATH:/usr/pg目录/bin/ 它要找pg_config这个文件。
这个错误可能是因为缺少PGSQL的相关库吧。 网上有很多解决办法,我最终用以下方式解决: yum install postgresql postgresql-devel python-devel 参考博客:https://www.cnblogs.com/aguncn/p/5776896.html