# 错误：foo-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 在此平台上不是受支持的 wheel。

- **ID:** `python/pip-no-matching-distribution-for-wheel`
- **领域:** python
- **类别:** install_error
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

wheel 是为与当前环境不同的平台或 Python 版本构建的。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| 3.8 | active | — | — |
| 3.9 | active | — | — |
| 3.10 | active | — | — |
| 3.11 | active | — | — |
| 3.12 | active | — | — |

## 解决方案

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

## 无效尝试

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