# 错误：package_name-1.0-py3-none-any.whl 不是此平台支持的 wheel。

- **ID:** `python/pip-unsupported-wheel-platform`
- **领域:** python
- **类别:** install_error
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

wheel 文件是为不同的平台或 Python 版本构建的。

## 版本兼容性

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

## 解决方案

1. **Download the correct wheel for your platform** (90% 成功率)
   ```
   pip download package_name --platform manylinux2014_x86_64 --python-version 3.10 --only-binary=:all:
   ```
2. **Build from source** (70% 成功率)
   ```
   pip install package_name --no-binary :all:
   ```

## 无效尝试

- **Forcing installation with --force-reinstall** — May cause runtime errors. (60% 失败率)
- **Renaming the wheel file** — Doesn't change internal metadata. (80% 失败率)
