解决安装psycopg2报ERROR: No matching distribution found for psycopg2

news/2024/11/16 7:30:23/

问题:

安装psycopg2报如下错误

ERROR: Command errored out with exit status 1:command: /usr/bin/python3 -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-musao8eq/psycopg2_1ca9bc61ea4a49ff8f198c51fdd0a4d2/setup.py'"'"'; __file__='"'"'/tmp/pip-install-musao8eq/psycopg2_1ca9bc61ea4a49ff8f198c51fdd0a4d2/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-pip-egg-info-7ilum7vjcwd: /tmp/pip-install-musao8eq/psycopg2_1ca9bc61ea4a49ff8f198c51fdd0a4d2/Complete output (23 lines):running egg_infocreating /tmp/pip-pip-egg-info-7ilum7vj/psycopg2.egg-infowriting /tmp/pip-pip-egg-info-7ilum7vj/psycopg2.egg-info/PKG-INFOwriting dependency_links to /tmp/pip-pip-egg-info-7ilum7vj/psycopg2.egg-info/dependency_links.txtwriting top-level names to /tmp/pip-pip-egg-info-7ilum7vj/psycopg2.egg-info/top_level.txtwriting manifest file '/tmp/pip-pip-egg-info-7ilum7vj/psycopg2.egg-info/SOURCES.txt'Error: pg_config executable not found.pg_config is required to build psycopg2 from source.  Please add the directorycontaining pg_config to the $PATH or specify the full executable path with theoption:python setup.py build_ext --pg-config /path/to/pg_config build ...or with the pg_config option in 'setup.cfg'.If you prefer to avoid building psycopg2 from source, please install the PyPI'psycopg2-binary' package instead.For further information please check the 'doc/src/install.rst' file (also at<http://initd.org/psycopg/docs/install.html>).----------------------------------------
WARNING: Discarding https://mirrors.aliyun.com/pypi/packages/94/09/2f1fae36d83e2315b90ee91738d01baf8af8c945726bf4b4708fcec3256d/psycopg2-2.7.6.tar.gz#sha256=4a658550b0bcb259e97f77f2dc93ed6b108fe2eda963a9e6fc8b48040d542ec2 (from https://mirrors.aliyun.com/pypi/simple/psycopg2/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
ERROR: Could not find a version that satisfies the requirement psycopg2==2.7.6 (from versions: 2.0.10, 2.0.11, 2.0.12, 2.0.13, 2.0.14, 2.2.0, 2.2.1, 2.2.2, 2.3.0, 2.3.1, 2.3.2, 2.4, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 2.4.5, 2.4.6, 2.5, 2.5.1, 2.5.2, 2.5.3, 2.5.4, 2.5.5, 2.6, 2.6.1, 2.6.2, 2.7, 2.7.1, 2.7.2, 2.7.3, 2.7.3.1, 2.7.3.2, 2.7.4, 2.7.5, 2.7.6, 2.7.6.1, 2.7.7, 2.8, 2.8.1, 2.8.2, 2.8.3, 2.8.4, 2.8.5, 2.8.6, 2.9, 2.9.1, 2.9.2, 2.9.3, 2.9.4, 2.9.5, 2.9.6, 2.9.7)
ERROR: No matching distribution found for psycopg2==2.7.6

原因

从报错的提示来看,是系统不知道pg_config的路径,需要把这个路径添加到PATH当中。但我们并不能找到这个路径在哪;

但我的系统里面并不能找到这个包。而是另外一个包 postgresql-devel

解决方法

yum install postgresql-devel

http://www.ppmy.cn/news/1052908.html

相关文章

mybatis动态SQL的运用

一、mybatis动态SQL update 表名 set name?,age? where id? 如果我们的前台没有传参&#xff0c;比如没有传入我们的name值&#xff0c;name就会把字段值改为null&#xff0c;这就违背了我们编码的初衷。 许多人会使用类似于where 1 1 来作为前缀&#xff0c;在代码中会用i…

面板市场趋势分析:价格上涨势头或将减缓 | 百能云芯

8月末&#xff0c;面板价格报价公布&#xff0c;市场研究机构TrendForce指出&#xff0c;电视面板今年以来已经上涨超过30%&#xff0c;虽然下游品牌商对于价格上涨提出了不同声音&#xff0c;但由于面板厂商采取了按需生产的策略&#xff0c;8月仍然出现了3~5%的价格上涨。Tre…

Ribbon:自定义负载均衡

自定义负载均衡算法 package com.kuang.myconfig;import com.netflix.client.config.IClientConfig; import com.netflix.loadbalancer.AbstractLoadBalancerRule; import com.netflix.loadbalancer.ILoadBalancer; import com.netflix.loadbalancer.Server;import java.util.…

Python OGR 矢量操作

矢量数据的读取顺序&#xff1a;文件(datasource) → 图层(layer) → 特征(feature)、字段(field) 导入所需库 try:from osgeo import gdal, ogr, osr except:import gdal, ogr, osr 读取文件 ogr.RegisterAll() # 注册所有的驱动 datasource ogr.Open(shp_path, 0) # 0表…

vcs 运行后,一直打印ucli%, 如何解决? ---待解决

故障现象&#xff1a;运行完make vcs命令后&#xff0c;一直在terminal 下面出现ucli%的打印 故障原因&#xff1a;不知道&#xff1b; 解决办法&#xff1a; 暂无

IDEA中导入多module的Maven项目无法识别module的解决办法

首先举个栗子 这是正常的多module工程&#xff08;spring cloud项目&#xff09; 正常工程.png 这是导入出现问题的多module工程 导入出现问题的工程.png 原因&#xff1a; 出现该问题&#xff0c;是由于打开工程的时候IDEA只编译了最外层的pom.xml文件&#xff0c;而内部的…

python matlab 画坐标图

画一个坐标系&#xff0c;同时显示两条直线&#xff0c;效果图如下&#xff1a; 功能点&#xff1a; 同时显示两个纵坐标数据 显示图片名称 图片最大化保存 到本地 在图片某个位置显示字符信息 不同的线名称提示 代码如下&#xff1a; import matplotlib.pyplot as pltde…

【第16例】IPD开发流程:横向管理工具之袖珍卡

目录 前言 袖珍卡 作者介绍 相关课程 前言 IPD 本身是一个非常庞杂的体系,几乎涵盖了企业的方方面面。 不仅仅是华为,包括一些引入 IPD 的新星科技企业。 他们对 IPD 的引入也是走了先僵化再优化的一个过程。 比如说开始的阶段全盘照抄走流程,虽然也并不是特别理解这…