Examples of ResolutionTooDeep in pip
This issue is for collecting real-world examples of ResolutionTooDeep. It is not for help with your specific install. Examples here will be used to test changes to the resolver.
If you hit ResolutionTooDeep, please post a reply with:
- pip version (
pip --version)
- Python version (
python --version)
- OS
- Output of
pip freeze
- The exact command that produced the error
- Any
pyproject.toml, requirements.txt, or other input files needed to reproduce. For pyproject.toml, the [project] dependencies is usually enough. Long files can go in a Gist.
Example reply:
pip version: 24.0
Python version: 3.11.6
OS: Ubuntu 22.04
$ pip install mypackage
ERROR: ResolutionTooDeep: xxx
pip freeze:
package-a==1.2.3
package-b==4.5.6
pyproject.toml:
[project]
dependencies = [
"package-a==1.2.3",
"package-b==4.5.6",
]
If you need a working install now, uv has a uv pip interface with a different resolver, though there are some compatibility differences.
Examples of
ResolutionTooDeepin pipThis issue is for collecting real-world examples of
ResolutionTooDeep. It is not for help with your specific install. Examples here will be used to test changes to the resolver.If you hit
ResolutionTooDeep, please post a reply with:pip --version)python --version)pip freezepyproject.toml,requirements.txt, or other input files needed to reproduce. Forpyproject.toml, the[project] dependenciesis usually enough. Long files can go in a Gist.Example reply:
If you need a working install now, uv has a
uv pipinterface with a different resolver, though there are some compatibility differences.