# ERROR: Could not find a version that satisfies the requirement foo==2.1.0 (from versions: none)

- **ID:** `python/pip-could-not-find-version-requirement`
- **Domain:** python
- **Category:** install_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

The requested package version does not exist on the configured index, or the package name is misspelled, or the index is unreachable.

## Version Compatibility

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

## Workarounds

1. **** (90% success)
   ```
   Run `pip index versions foo` to list available versions, then install an existing one.
   ```
2. **** (85% success)
   ```
   Check spelling and use `pip install foo` without pinning, or specify `--extra-index-url https://pypi.org/simple`.
   ```

## Dead Ends

- **** — The version genuinely does not exist; retrying does not change index contents. (95% fail)
- **** — pip version is unrelated to index availability. (85% fail)
