Home >Backend Development >Python Tutorial >Why am I getting the \'filename.whl is not a supported wheel on this platform\' error when installing Python packages?
"Platform Incompatibility: "filename.whl is not a supported wheel" Error
When attempting to install a pre-built Python package (.whl) locally, users may encounter the "filename.whl is not a supported wheel on this platform" error. This occurs when the specified wheel is not compatible with the target machine's operating system or Python interpreter version.
The provided error indicates that the package scipy-0.15.1-cp33-none-win_amd64.whl is not suitable for the user's current environment. The string "cp33" in the filename suggests that the wheel was built for Python 3.3.
To resolve this issue, the user should download the correct wheel that соответствует with their Python interpreter version. In this case, they require scipy-0.15.1-cp27-none-win_amd64.whl for Python 2.7.
The above is the detailed content of Why am I getting the \'filename.whl is not a supported wheel on this platform\' error when installing Python packages?. For more information, please follow other related articles on the PHP Chinese website!