python打怪之路【第二篇】:ImportError: No module named setuptools

在python安装第三方模块时出现如下错误:
  python错误:ImportError: No module named setuptools
这句错误提示的表面意思是:没有setuptools的模块,说明python缺少这个模块,那我们只要安装这个模块即可解决此问题,下面我们来安装一下:

在shell中:

wget https://bootstrap.pypa.io/ez_setup.py -O - | python

完成。

原文地址:https://www.cnblogs.com/wooya/p/5792354.html