Let me tell you what python wheel is

wheel is a new Python disribution, used to replace Python's traditional egg file. Currently, more than half of the library files have corresponding wheel files. .whl files are similar to .egg files: they are actually "disguised" .zip files. If you change the .whl file name extension to *.zip, you can use your zip application to open it and view the files and folders it contains.

My understanding is that it is a supporting wheel, a car needs a wheel, and python needs a wheel, otherwise it will not report an error.

Report an error ERROR: xxx.whl is not a supported wheel on this platform.

Command line installation

installation wheel pip install wheel

Guess you like

Origin blog.csdn.net/weixin_45598506/article/details/112513348