# 错误：无效的命令'bdist_wheel'

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

## 根因

安装的setuptools版本太旧，不支持构建wheel发行版，或缺少'wheel'包。

## 版本兼容性

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

## 解决方案

1. **** (95% 成功率)
   ```
   pip install --upgrade setuptools wheel
   ```
2. **** (90% 成功率)
   ```
   python -m pip install setuptools wheel
   ```
3. **** (85% 成功率)
   ```
   pip wheel . --no-deps
   ```

## 无效尝试

- **** — Same error; command not available. (100% 失败率)
- **** — May not be in the right environment. (50% 失败率)
- **** — Reinstalls but setuptools still too old. (60% 失败率)
