# 错误：找不到满足需求 nonexistent-package 的版本（可用版本：无）

- **ID:** `python/pip-install-no-matching-distribution`
- **领域:** python
- **类别:** install_error
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

包名拼写错误，或者该包在 PyPI 或配置的索引上不存在。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| 3.x | active | — | — |

## 解决方案

1. **** (90% 成功率)
   ```
   pip search nonexistent-package  # or visit pypi.org
   ```
2. **** (70% 成功率)
   ```
   pip install -i https://test.pypi.org/simple/ nonexistent-package
   ```

## 无效尝试

- **** — Cache is not the issue; the package simply doesn't exist. (95% 失败率)
- **** — If the package is not on the new index either, it still fails. (80% 失败率)
