Issue
I used this command in terminal
sudo apt-get install python-setuptools
it throws up an error instead of installing - Package 'python-setuptools' has no installation candidate
Solution
THis is a python package so you could use pip to install it
pip3 install setuptools
Answered By - MD SHAYON