Error AtlasError Documentation and Resolution

pip check found an installed dependency with the wrong version

pyramid 1.5.2 has requirement WebOb>=1.3.1, but you have WebOb 0.8.

pip check found that an installed package depends on a version range that the currently installed dependency does not satisfy.

has requirement <package><version>, but you have <package> <version>package managers
pyramid 1.5.2 has requirement WebOb>=1.3.1, but you have WebOb 0.8.
  • A dependency was upgraded or downgraded independently of the package that depends on it.
  • The environment contains incompatible package versions after partial changes.
  • A manual installation bypassed a previously compatible dependency set.
  1. Upgrade or downgrade the conflicting package so it matches the required version range.
  2. Reinstall the top-level package and its dependencies if the environment has drifted out of a consistent state.
  3. Use pinned versions or a lock file approach where possible to reduce future dependency drift.
pip documentation: pip check
pip has requirement but you have another version: causes and fixes | Error Atlas