Software⏱️ 2 min read📅 2026-05-31

How to Fix: Error "filename.whl is not a supported wheel on this platform"

pip install issue with unsupported wheel on this platform

Quick Answer: Try installing scipy using pip by specifying the full path to the wheel file, or upgrade pip to a newer version that supports the wheel format.

The error message 'filename.whl is not a supported wheel on this platform' occurs when you try to install a pre-compiled wheel (.whl) file using pip, but the platform (in this case, Windows) does not support it.

🔍 Why This Happens

  • [Cause]

✅ Best Solutions to Fix It

Method 1: Using pip with the --force-reinstall Option

  1. Step 1: Run the following command in your terminal or command prompt: pip install --force-reinstall scipy-0.15.1-cp33-none-win_amd64.whl

Method 2: Installing from Source

  1. Step 1: Navigate to the directory where you saved the scipy source code using cd: cd scipy-0.15.1
  2. Step 2: Run the following command in your terminal or command prompt: python setup.py install

🎯 Final Words

By following these methods, you should be able to resolve the 'filename.whl is not a supported wheel on this platform' error and successfully install scipy.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions