# ERROR: Invalid wheel filename: 'my_pkg-1.0-py3-none-any.whl' - wheel filenames must have the form: {distribution}-{version}(-{build tag})?-{python tag}-{abi tag}-{platform tag}.whl

- **ID:** `python/pip-wheel-filename-invalid`
- **Domain:** python
- **Category:** data_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

The wheel filename does not follow the PEP 427 naming convention, often due to missing tags or incorrect separators.

## Version Compatibility

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

## Workarounds

1. **** (90% success)
   ```
   python setup.py bdist_wheel
   ```
2. **** (80% success)
   ```
   mv my_pkg-1.0-py3-none-any.whl my_pkg-1.0-py3-none-any.whl (ensure underscores and hyphens correct)
   ```
3. **** (85% success)
   ```
   pip wheel . --no-deps
   ```

## Dead Ends

- **** — May still not meet the spec. (70% fail)
- **** — Pip refuses to install. (100% fail)
- **** — Must be .whl. (90% fail)
