Two or more packages have incompatible version requirements. pip cannot find a version combination that satisfies all requirements simultaneously.
Fixes How to fix 'conflicting dependencies' error in pip
# How to fix 'conflicting dependencies' error in pip
When you install package A (requires B>=2.0) and package C (requires B<2.0), pip cannot find a single version of B that satisfies both constraints. This is a dependency conflict. pip fails to resolve the dependency tree.
Review the error message above and identify which cause applies to your situation. Run additional diagnostics if needed.
Follow the corresponding solution from the causes section above.
Once you've addressed the root cause, try running 'pip install' again.