# error: invalid command 'bdist_wheel'

- **ID:** `python/setuptools-unsupported-wheel-format`
- **Domain:** python
- **Category:** install_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

The setuptools version installed is too old to support building wheel distributions, or the 'wheel' package is missing.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.9 | active | — | — |

## Workarounds

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

## Dead Ends

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