No module named setuptools No module named setuptools python python

No module named setuptools


Install setuptools and try again.

try command:

sudo apt-get install -y python-setuptools


For ubuntu users, this error may arise because setuptool is not installed system-wide. Simply install setuptool using the command:

sudo apt-get install -y python-setuptools

For python3:

sudo apt-get install -y python3-setuptools

After that, install your package again normally, using

sudo python setup.py install

That's all.


For Python Run This Command

apt-get install -y python-setuptools

For Python 3.

apt-get install -y python3-setuptools