返回顶部

macOS M1 下pip install安装.whl报错“is not a supported wheel on this platform.

macOS M1 下pip install安装.whl报错“is not a supported wheel on this platform.“

多半是由于conda的python环境和你要安装的文件版本不匹配

pip debug --verbose

查看当前支持的版本号

会发现当前和我们要安装的文件版本均不对应

所以要重新安装适合的python版本

conda search "^python$" 

conda install -y python==x.x.x

安装即可

posted @ 2021-12-03 15:53  Rayotaku  阅读(761)  评论(0编辑  收藏  举报