The version constraint you specified for a package cannot be satisfied. Either the version doesn't exist, or you've pinned incompatible versions.
Fixes How to fix 'Incompatible package versions' error in pip
# How to fix 'Incompatible package versions' error in pip
When you specify a package version that violates its dependencies, pip refuses to install. For example: 'django==2.0' requires 'sqlparse>=0.2.2', but you specified 'sqlparse==0.1'. These versions are incompatible.
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.