首页 > 解决方案 > Pip 找不到最新版本

问题描述

Pip 没有找到一些可用的 Python 包的最新版本。

当我尝试pip install cachetools==4.1.0时,它给了我错误

错误:找不到满足要求的版本 cachetools==4.1.0(来自版本:0.0.0、0.1.0、0.2.0、0.3.0、0.3.1、0.4.0、0.5.0、0.5 .1、0.6.0、0.7.0、0.7.1、0.8.0、0.8.1、0.8.2、1.0.0、1.0.1、1.0.2、1.0.3、1.1.0、1.1.1 , 1.1.2, 1.1.3, 1.1.4, 1.1.5, 1.1.6, 2.0.0, 2.0.1, 2.1.0, 3.0.0, 3.1.0, 3.1.1) 错误:没有匹配的分布找到 cachetools==4.1.0

当它可用时(https://pypi.org/project/cachetools/)我能做些什么来解决这个问题?

标签: pip

解决方案


cachetools仅支持 Python 2.7 到版本 3。版本 4 需要 Python 3.5+


推荐阅读