is not a supported wheel on this platform问题的解决

今天在安装scipy的时候,竟然出现is not a supported wheel on this platform,这个问题很特别,在正常安装中,没出现过,而解决问题的方式也很新奇,竟然是把安装包的文件名改了,首先
is not a supported wheel on this platform问题的解决_第1张图片
发现这里支持的python包名字构成是,[(‘cp38’, ‘cp38m’, ‘win_amd64’), (‘cp38’, ‘none’, ‘win_amd64’), (‘py3’, ‘none’, ‘win_amd64’), (‘cp38’, ‘none’, ‘any’), (‘cp3’, ‘none’, ‘any’), (‘py38’, ‘none’, ‘any’), (‘py3’, ‘none’, ‘any’), (‘py37’, ‘none’, ‘any’), (‘py36’, ‘none’, ‘any’), (‘py35’, ‘none’, ‘any’), (‘py34’, ‘none’, ‘any’), (‘py33’, ‘none’, ‘any’), (‘py32’, ‘none’, ‘any’), (‘py31’, ‘none’, ‘any’), (‘py30’, ‘none’, ‘any’)]这些,这个时候的pip._internal就成为了主要的问题来源,内部链接是个什么情况,其实在其他的面向对象的开发环境都有类似的一个内容。
在后面的过程中,再继续吧_internal逐步了解一下。

这个时候其实我就把我的文件名改成了在这里插入图片描述
也就是其中这个list的一个部分的字符-连接,然后就直接可以安装了。

你可能感兴趣的:(一些小问题,python)