python依赖包冲突

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.

解决方案:卸载所有包重新安装

pip freeze > allpackages.txt
pip uninstall -r allpackages.txt -y

你可能感兴趣的:(python,python)