安装BUG解决方案: ERROR: Could not find a version that satisfies the requirement

背景

当利用国内镜像源(如清华镜像源)安装指定版本的第三方库时,有时会出现镜像源中找不到对应模块的问题,例如:

pip install sktime==0.16.1 -i https://pypi.tuna.tsinghua.edu.cn/simple

报错信息如下:

安装BUG解决方案: ERROR: Could not find a version that satisfies the requirement_第1张图片

解决方案

  1. 临时利用默认镜像源进行安装
pip install module_name -i https://pypi.org/simple

如果利用默认镜像源进行安装时仍然报类似的错误,此时报错的原因很可能是python版本和模块的指定版本不兼容

  • 例如,python的版本是3.6,希望安装sktime模块的版本是0.16.1,从sktime库的相关信息能够找到满足sktime模块的版本是0.16.1的python版本,即:安装BUG解决方案: ERROR: Could not find a version that satisfies the requirement_第2张图片
  • 可以看到,python3.6不支持sktime模块的0.16.1版本,此时,建议重新搭个满足条件的虚拟环境即可解决问题。

你可能感兴趣的:(BUG合集篇,python,python小技巧,bug,python)