setup.py の問題

setup.py の問題

私は Disco Dingo 19.04 を実行しており、自宅のネットワークでテストを行うために evillimiter をインストールしようとしています。しかし、python setuptools で問題が発生しました。

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# 

ご覧のとおり、setuptools のほか、-pip、python、python3 もすでにインストールされています。ご協力いただければ幸いです。

関連情報