python
install_error
ai_generated
true
ERROR: No matching distribution found for somepackage==999.0.0
ID: python/pip-no-distribution-found
80%Fix Rate
85%Confidence
0Evidence
2024-01-15First Seen
Version Compatibility
| Version | Status | Introduced | Deprecated | Notes |
|---|---|---|---|---|
| 3.8 | active | — | — | — |
| 3.9 | active | — | — | — |
| 3.10 | active | — | — | — |
| 3.11 | active | — | — | — |
| 3.12 | active | — | — | — |
Root Cause
The requested package version does not exist on PyPI or the configured index.
generic中文
请求的包版本在 PyPI 或配置的索引上不存在。
Workarounds
-
95% success
pip install somepackage==1.2.3
-
85% success
pip install somepackage==999.0.0 --index-url https://private-pypi.example.com/simple
Dead Ends
Common approaches that don't work:
-
95% fail
Package version unavailability is not a pip version issue; downgrading may break other functionality.
-
100% fail
Random URLs do not contain the package; pip will still fail.