# ERROR: numpy-1.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl is not a supported wheel on this platform.

- **ID:** `python/pip-unsupported-wheel-format`
- **Domain:** python
- **Category:** install_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

The wheel filename indicates it is for a different Python version or platform (e.g., cp39 vs cp310, or manylinux vs musllinux).

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.9 | active | — | — |

## Workarounds

1. **Install from source to get platform-specific build** (70% success)
   ```
   pip install numpy --no-binary :all:
   ```
2. **Find correct wheel for your platform** (85% success)
   ```
   pip download numpy --platform manylinux2014_x86_64 --python-version 3.9 --only-binary=:all:
   ```

## Dead Ends

- **Renaming the wheel file** — Does not change the internal metadata; pip still checks compatibility. (95% fail)
- **Using --force-reinstall** — Forces reinstall but still platform incompatible. (90% fail)
