转:Python出现Could not find a version that satisfies the requirement openpyxl (from versions: )

https://blog.csdn.net/weixin_42840933/article/details/85308265

一.环境
使用python3.7时,用pip安装openpyxl出现如下错误:

系统环境:windows10家庭版
Python版本:python3.7.1
IDE:sublime_text 3
二. 解决方案
按照提示所示是其中一个原因是pip版本过低,需要更新pip:
python -m pip install --upgrade pip
由于python国内网络不稳定,一直报错,升级了很多次才成功。
然后继续还是报错:

可能考虑到是python国内网络的问题,这时我们用国内的镜像源来加速。
pip install 包名 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
这个是豆瓣源
--trusted-host pypi.douban.com 这是为了获得ssl证书的认证,要不然会报错
然而还是报错,可能是我电脑网络原因,常理来说都可以安装成功的,大家到这一步可能应该已经解决问题了。
我最后还是用pip3 install openpyxl尝试很多次后才安装成功。

三. pip和pip3的区别
其实这两个命令效果是一样的,没有区别:

比如安装库openpyxl,pip3 install openpyxl或者pip install openpyxl:只是当一台电脑同时有多个版本的Python的时候,用pip3就可以自动区分用Python3来安装库。是为了避免和Python2发生冲突的。
(2)如果你的电脑只安装了Python3,那么不管用pip还是pip3都一样的。
安装了python3之后,会有pip3
(1)使用pip install XXX :
新安装的库会放在这个目录下面:python2.7/site-packages
(2)使用pip3 install XXX :
新安装的库会放在这个目录下面:python3.7/site-packages
(3)如果使用python3执行程序,那么就不能importpython2.7/site-packages中的库。
---------------------
版权声明:本文为CSDN博主「My木岩」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_42840933/article/details/85308265

原文地址:https://www.cnblogs.com/ahc28/p/11351009.html

时间: 2024-11-11 11:59:43

转:Python出现Could not find a version that satisfies the requirement openpyxl (from versions: )的相关文章

[报错处理]Could not find a version that satisfies the requirement xml (from versions)

安装xml库发生报错 pip3 install xml Collecting xml Could not find a version that satisfies the requirement xml (from versions: ) No matching distribution found for xml 尝试安装lxml进行代替 [email protected]:/home/ubuntu/publisher_info# pip3 install lxml Collecting l

mac上安装pil报错: ERROR: Could not find a version that satisfies the requirement pil (from versions: none):

mac上安装pil报错: ERROR: Could not find a version that satisfies the requirement pil (from versions: none): 原文地址:https://www.cnblogs.com/Zhao159461/p/12629635.html

Windows下Pycharm安装Tensorflow:ERROR: Could not find a version that satisfies the requirement tensorflow

今天在Windows下通过Pycharm安装Tensorflow时遇到两个问题: 使用pip安装其实原理都相同,只不过Pycharm是图形化的过程! 1.由于使用国外源总是导致Timeout 解决方法是在Pycharm中添加清华源 https://mirrors.aliyun.com/pypi/simple/(或者其他的国内源) 2.替换成清华源后安装报错: ERROR: Could not find a version that satisfies the requirement tensor

Could not find a version that satisfies the requirement numpy>=1.7.0 (from pan das==0.17.0) (from versions: ) No matching distribution found for numpy>=1.7.0 (from pandas==0.17.0)

今天晚上一直在安装pandas,天杀的,真的是太难了.后来发现提示: Could not find a version that satisfies the requirement numpy>=1.7.0 (from pan das==0.17.0) (from versions: ) No matching distribution found for numpy>=1.7.0 (from pandas==0.17.0) 更新numpy的版本步骤如下: 1.查看当前numpy安装包版本:p

pip3版本已经是最新,安装openxl失败,Could not find a version that satisfies the requirement openxl

pip3版本已经是最新,安装openxl失败,提示 Could not find a version that satisfies the requirement openxl,No matching distribution found for openxl 用以下问答中的第3个答案解决,其他两种应该也没问题. https://ask.csdn.net/questions/1053770 原文地址:https://www.cnblogs.com/tiaotiaoxia/p/12315082.h

python导入第三方库schedule报错ERROR: Could not find a version that satisfies the requirement schedule (from

RROR: No matching distribution found for tensorflow的情况这可能是因为网络的问题,这时我们使用国内的镜像源来加速输入命令:python -m pip install schedule(如果你安装的是别的库,请输入别的库名) 原文链接:https://blog.csdn.net/shaui541607120115/article/details/89640808 原文地址:https://www.cnblogs.com/zhanghuanfree/

anaconda安装tensorflow问题: Could not find a version that satisfies the requirement tensorboard

背景:想要为下载的anaconda安装tensorflow 使用命令 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow 报错如下: 解决办法:创建一个虚拟虚拟环境,在虚拟环境中安装tensorflow,然后使用pycharm创建项目,指定项目的运行环境为刚才创建的虚拟环境. 一:创建虚拟环境:conda create -n test python=3.5 -n后面是虚拟环境的名字   python=指定虚拟环境使

Could not find a version that satisfies.... No matching distribution found for .....

原文作者:aircraft 原文链接:https://www.cnblogs.com/DOMLX/p/10227403.html 今天在安装mysql-python的时候报了很多的错误,其中一条就是这样的. Could not find a version that satisfies mysql-python... 找不到满意的版本,这时就是我们的pip可能需要升级了,所以使用 python -m pip install --upgrade pip 然后继续尝试发现还是不行,会报相同的错误,这

Python操作excel的几种方式--xlrd、xlwt、openpyxl

openpyxl xlrd xlwt 在处理excel数据时发现了xlwt的局限性–不能写入超过65535行.256列的数据(因为它只支持Excel 2003及之前的版本,在这些版本的Excel中行数和列数有此限制),这对于实际应用还是不够的.为此经过一番寻找发现了一个支持07/10/13版本Excel的openpyxl,虽然功能很强大,但是操作起来感觉没有xlwt方便.下面分别说下几个模块的常用操作. xlrd xlrd是用来从Excel中读写数据的,但我平常只用它进行读操作,写操作会遇到些问