# ERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. If you have updated the package versions, please update the hashes.

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

## Root Cause

Cached wheel differs from the hash pinned in requirements, often due to a corrupted cache or changed source.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.x | active | — | — |

## Workarounds

1. **** (90% success)
   ```
   pip cache purge
pip install --require-hashes -r requirements.txt
   ```
2. **** (85% success)
   ```
   pip-compile --generate-hashes requirements.in
   ```

## Dead Ends

- **** — Hash check still applies to the downloaded artifact. (70% fail)
- **** — Weakens supply-chain security and may violate policy. (60% fail)
