当前位置: 代码迷 >> 综合 >> 解决 ERROR: gensim-3.8.1-cp35-cp35m-win32.whl is not a supported wheel on this platform.
  详细解决方案

解决 ERROR: gensim-3.8.1-cp35-cp35m-win32.whl is not a supported wheel on this platform.

热度:57   发布时间:2023-12-29 00:49:58.0

错误原因:

系统不支持该gensim版本

 

解决方案:

打开cmd

输入 

import pip._internal
print(pip._internal.pep425tags.get_supported())

我的输出结果是

[('cp37', 'cp37m', 'win_amd64'), ('cp37', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp37', 'none', 'any'), ('cp3', 'none', 'any'), ('py37', 'none', 'any'), ('py3', 'none', 'any'), ('py36', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]

因为我的Python版本是3.7且我的系统是Windows64位,所以我需要下载和上面输出结果对应的gensim版本,也就是下图这个

  相关解决方案