problemas con setup.py

problemas con setup.py

Estoy ejecutando Disco Dingo 19.04 e intento instalar evillimiter para realizar algunas pruebas en mi red doméstica. Sin embargo, me encontré con un problema con las herramientas de configuración de Python.

icarus@Omicron:~$ sudo bash
[sudo] password for icarus: 
root@Omicron:~# cd evillimiter
root@Omicron:~/evillimiter# sudo python3 setup.py install
Traceback (most recent call last):
  File "setup.py", line 3, in <module>
    from setuptools import setup, find_packages, Command
ModuleNotFoundError: No module named 'setuptools'
root@Omicron:~/evillimiter# sudo apt-get install python3-setuptools
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3-setuptools is already the newest version (40.8.0-1).
0 upgraded, 0 newly installed, 0 to remove and 390 not upgraded.
root@Omicron:~/evillimiter# sudo apt-get install python-setuptools
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python-setuptools is already the newest version (40.8.0-1).
0 upgraded, 0 newly installed, 0 to remove and 390 not upgraded.
root@Omicron:~/evillimiter# 

Puede ver que ya tengo instaladas las herramientas de configuración, así como -pip, python y python3. Cualquier ayuda sería apreciada.

información relacionada