# ERROR: no such option: --no-use-wheel

- **ID:** `python/pip-no-such-option`
- **Domain:** python
- **Category:** config_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

A deprecated or removed pip option is being used, likely from an outdated script or documentation.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.8 | active | — | — |
| 3.9 | active | — | — |
| 3.10 | active | — | — |
| 3.11 | active | — | — |
| 3.12 | active | — | — |

## Workarounds

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

## Dead Ends

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