我正在尝试使用pip安装sktime。pypi中的最新版本是0.5.1,但是当我安装0.4.3时,它会被安装。我尝试使用pip3 install sktime==0.5.1进行安装,它抛出错误
Could not find a version that satisfies the requirement sktime==0.5 (from versions: 0.1.dev0, 0.1.0, 0.2.0, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3)
No matching distribution found for sktime==0.5发布于 2021-01-10 08:18:50
对于未来的用户,请参阅chat的相关详细信息:
Ubuntu 18.0.4
pip 9.0.1
python 3.6.9这里的问题是pip版本太旧,无法安装任何wheel files for 0.5.1。根据this issue的说法,PIP19.0中添加了manylinux2010支持。要解决此问题,只需将pip升级到版本>19即可。
那么为什么这个问题只出现在0.5.1版本中,而不是之前的版本中?这是因为所有以前的版本(例如,0.4.3)都提供了源代码发行版( .tar.gz),它可以用来从源代码构建,作为轮子的替代。但是,此sdist在0.5.1中被删除。
https://stackoverflow.com/questions/65648658
复制相似问题