# ERROR: No matching distribution found for tensorflow==2.12.0

- **ID:** `python/pip-no-matching-distribution-found`
- **Domain:** python
- **Category:** install_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

The requested package version does not exist on PyPI or the index URL is unreachable.

## Version Compatibility

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

## Workarounds

1. **Specify an existing version or use latest** (95% success)
   ```
   pip install tensorflow==2.15.0
   ```
2. **Check package availability on PyPI** (90% success)
   ```
   pip index versions tensorflow
   ```

## Dead Ends

- **Upgrading pip to latest version** — The version simply doesn't exist; pip version is irrelevant. (90% fail)
- **Clearing pip cache with `pip cache purge`** — Cache is not the issue; the package version is absent from remote index. (85% fail)
