使用pip install安装.whl文件出现is not a supported wheel on this platform解决办法

安装python库wordcloud的时候出现 is not a supported wheel on this platform的错误:

 

下载相关文件的源地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame

出现这个问题的原因是版本不匹配

查看本机python的版本匹配哪些文件

 

 

使用pip install安装.whl文件出现is not a supported wheel on this platform解决办法_第1张图片

 

下载安装对应的版本文件即可(本机python pip命令匹配的版本是pygame-1.9.4-cp37-cp37m-win32.whl这个文件)

 

安装的时候注意路径要设置成自己下载的文件存在的路径下安装,否则会出现找不到文件的情况哦~

 

转载于:https://www.cnblogs.com/dreamer-lin/articles/10880736.html

你可能感兴趣的:(使用pip install安装.whl文件出现is not a supported wheel on this platform解决办法)