python3安装中的报错ImportError “No Module named Setuptools”解决

在使用python3安装软件包的时候python setup.py install ,

直接就报错ImportError “No Module named Setuptools找不到Setuptools。我用的是debian9

在Debian上安装命令setuptools
apt-get install python3-setuptools

低版本的Python(Python 2.x)安装命令
apt-get install python-setuptools
THE END