官网:https://pypi.org/project/setuptools/
pip安装
pip install setuptools
源码安装
wget https://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz tar zxvf setuptools-0.6c11.tar.gz cd setuptools-0.6c11 python setup.py build python setup.py install
参考:http://www.pythontab.com/html/2012/pythonhexinbiancheng_1220/21.html
在python运行过程中出现如下错误:
ImportError: No module named setuptools
这句错误提示的表面意思是:没有setuptools的模块,说明python缺少这个模块。