解决ERROR: Could not find a version that satisfies the requirement 问题及 ERROR: Exception:Traceback
Posted Nikko_X
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决ERROR: Could not find a version that satisfies the requirement 问题及 ERROR: Exception:Traceback相关的知识,希望对你有一定的参考价值。
最近安装tensorflow-hub 出现错误:
ERROR: Could not find a version that satisfies the requirement tensorflow-hub (from versions: none)
ERROR: No matching distribution found for tensorflow-hub
先说本人最终解决使用的方法:更换下载镜像源并将pip 改为 pip3
出现这个问题有可能是你下载的版本与你配置的环境不兼容,最好是寻找对应的版本进行pip,此方法确实可以下载下来,但下载后不一定可用。
pip3 install tensorflow-hub -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
install 后面是你需要下载的包,用的是豆瓣的镜像源
如果问题还是没有解决可以尝试以下方法
1、升级 pip
python -m pip install --upgrade pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
2、更换其他镜像源
清华镜像源: https://pypi.tuna.tsinghua.edu.cn/simple
中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple
豆瓣:http://pypi.douban.com/simple/
阿里: http://mirrors.aliyun.com/simple/
使用方法
pip3 install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
至于pip与pip3的区别可以自行去搜一下。
Python安装包报错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 库包名 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
上面使用了豆瓣源,将其换成清华源、阿里源等都适用。
清华源:
以上是关于解决ERROR: Could not find a version that satisfies the requirement 问题及 ERROR: Exception:Traceback的主要内容,如果未能解决你的问题,请参考以下文章
Python安装包报错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解决方法
Error: could not find java.dll如何解决
python通过pip安装torch错误及解决办法ERROR: Could not find a version that satisfies the requirement torch
jsonpath安装失败--ERROR: Could not find a version that satisfies the requirement jsonpath
pip install yaml报错ERROR:Could not find a version that satisfies the requirement yaml