本文主要是介绍Package ‘zipp’ requires a different Python:3.5.2 not in ‘ 大于等于3.6’,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题:
ubuntu16.04中,python3.5环境下 安装python包virtualenvwrapper时报错:ERROR:Package ‘zipp’ requires a different Python: 3.5.2 not in ‘>=3.6’
问题原因
原因是原来安装的该包太新了, 安装新包依赖的包比这个旧所以安装失败。
解决此问题
1,查看问题包名:
pip list 或者 pip freeze.
找到该版本冲突包的名称,使用pip3 uninstall 包名
卸载。
2,再直接去安装想安装的包即可,冲突包会自动安装到适用版本
pip3 install virtualenvwrapper
这篇关于Package ‘zipp’ requires a different Python:3.5.2 not in ‘ 大于等于3.6’的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!