# 错误：没有这样的选项：--no-use-wheel

- **ID:** `python/pip-no-such-option`
- **领域:** python
- **类别:** config_error
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

使用了已弃用或已移除的 pip 选项，可能来自过时的脚本或文档。

## 版本兼容性

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

## 解决方案

1. **Replace with the current equivalent option** (90% 成功率)
   ```
   pip install --no-binary :all: mypackage
   ```
2. **Upgrade pip to the latest version and check documentation** (95% 成功率)
   ```
   pip install --upgrade pip && pip install --help
   ```

## 无效尝试

- **Using --no-binary instead but with incorrect syntax** — The correct option is --no-binary :all:, but misuse can cause other errors. (70% 失败率)
- **Ignoring the option and running without it** — The script may fail if it expects the option to be present. (60% 失败率)
