# 错误：pkg-1.0-cp39-cp39-manylinux2014_x86_64.whl 不是此平台支持的 wheel。

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

## 根因

wheel 的平台标签与当前操作系统或 Python 版本不匹配。

## 版本兼容性

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

## 解决方案

1. **** (85% 成功率)
   ```
   pip download pkg --platform manylinux2014_x86_64 --python-version 39 --only-binary=:all:
   ```
2. **** (90% 成功率)
   ```
   pip install pkg --no-binary :all:
   ```

## 无效尝试

- **** — Pip will still reject the wheel due to incompatible tags. (90% 失败率)
- **** — Doesn't change the wheel compatibility. (80% 失败率)
