Python pip install 安装包报错ERROR: Could not find a version that satisfies the requirement XXX解决方法
Posted 皮诺不潮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python pip install 安装包报错ERROR: Could not find a version that satisfies the requirement XXX解决方法相关的知识,希望对你有一定的参考价值。
Python pip install 安装包报错ERROR: Could not find a version that satisfies the requirement XXX解决方法
文章目录
一、问题
使用 pip 安装 python 包时,经常会出现如下错误:
ERROR: Could not find a version that satisfies the requirement xxxx(from versions: none)
ERROR: No matching distribution found for xxxx
本次在用pip命令(pip install pdf2word)安装pdf2docx包的时候出错
因为后来安装好了,所以故意安装一个错误的pdf2word,来整个图
二、原因
可能是国内网络不稳定,直接导致报错,而不是环境冲突。报错信息看起来容易把人误导到解决包环境问题。
三、解决办法
直接选用稳定的pip源并且信任它的来源就可以解决这种问题
这里用的是阿里云镜像源
pip install pdf2docx -i http://mirrors.aliyun.com/simple/ --trusted-host mirrors.aliyun.com
其它镜像源:
清华镜像源 | https://pypi.tuna.tsinghua.edu.cn/simple |
---|---|
中国科学技术大学 | https://pypi.mirrors.ustc.edu.cn/simple |
豆瓣 | http://pypi.douban.com/simple/ |
使用方法:
例如,豆瓣
pip install 包名 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
注意:
如果你的环境里还有python的其他版本,要区分pip和pip3
pip安装python第三方包报错
报错信息:
HTTPConnectionPool(host=‘‘xx.xx.xx.xx‘, port=xx): Max retries exceeded with url: (Caused by NewConnectionError(‘<urllib3.connection.HTTPConnection object at 0x00000237EE44EF98>: Failed to establish a new connection: [WinError 10060]
由于连接方在一段时间后没有正确答复或连接的主机没有反 应,连接尝试失败。‘,))
解决方式:
以上是关于Python pip install 安装包报错ERROR: Could not find a version that satisfies the requirement XXX解决方法的主要内容,如果未能解决你的问题,请参考以下文章
Windows系统下Python使用pip安装第三方包报错SSL模块不可用