Posted on 16th September 2024|165 views
How to resolve an import error called no module named setuptools?
I have always installed packages using stup.py install, but now when I am trying to install ansicolors package I am getting an error called no module named setuptools can anyone help me to install setuptools?
Posted on 16th September 2024| views
your setup.py wants setuptools few of the packages to utilize distutils, but many of the packages use setuptools you can install setuptools like this
sudo apt-get install python3-setuptools
If you are using older versions, use this
sudo apt-get install python-setuptools