本文主要是介绍ValueError: A 0.7-series setuptools cannot be installed with distribute.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在安装python的distribute时会遇到这个问题:
ValueError: A 0.7-series setuptools cannot be installed with distribute.
原因是
Distribute 不允许安装 Setuptools 0.7+ ,所以需要把Distribute 和 Setuptools 全部删除掉,重新安装
rm */lib/python2.7/site-packages/setuptools*
rm */lib/python2.7/site-packages/distribute*
pip install Setuptools==0.75
然后就可以安装Distribute 了
参考:
https://pypi.python.org/pypi/setuptools/0.7.5#upgrading-from-distribute
这篇关于ValueError: A 0.7-series setuptools cannot be installed with distribute.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!