Error AtlasError Documentation and Resolution

pip check found an installed dependency with the wrong version

PACKAGE has requirement DEPENDENCY>=VERSION, but you have DEPENDENCY OLDER_VERSION.

pip check found an installed dependency version that does not satisfy the requirement declared by another installed package.

has requirement X, but you have Ypackage managers
PACKAGE has requirement DEPENDENCY>=VERSION, but you have DEPENDENCY OLDER_VERSION.
  • A dependency was downgraded or pinned to an incompatible version.
  • Multiple package installs left the environment with mismatched versions.
  • Manual package changes bypassed dependency resolution.
  1. Upgrade or reinstall the dependency so it satisfies the required version range.
  2. Reinstall the affected top-level packages together so pip can align their dependencies.
  3. Use constraints or lock files if you need a repeatable compatible set of versions.
pip documentation: pip check
pip has requirement but you have: causes and fixes | Error Atlas