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

安装即可

原文地址:https://www.cnblogs.com/lr599909928/p/15638342.html