# ERROR: foo-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl is not a supported wheel on this platform.

- **ID:** `python/pip-no-matching-distribution-for-wheel`
- **Domain:** python
- **Category:** install_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

The wheel is built for a different platform or Python version than the current environment.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.8 | active | — | — |
| 3.9 | active | — | — |
| 3.10 | active | — | — |
| 3.11 | active | — | — |
| 3.12 | active | — | — |

## Workarounds

1. **** (95% success)
   ```
   Download the correct wheel for your platform/Python version from PyPI.
   ```
2. **** (80% success)
   ```
   Build from source: `pip install --no-binary foo foo`.
   ```

## Dead Ends

- **** — Does not change the binary compatibility. (95% fail)
- **** — Still rejects incompatible wheel. (90% fail)
