Reputation: 1
Traceback (most recent call last):
File "mitmf.py", line 29, in <module>
import core.responder.settings as settings
File "/home/hacklab/Downloads/MITMf-master/MITMf/core/responder/settings.py", line 24, in <module>
from core.configwatcher import ConfigWatcher
File "/home/hacklab/Downloads/MITMf-master/MITMf/core/configwatcher.py", line 20, in <module>
import pyinotify
ImportError: No module named pyinotify
I cannot open mitmf. I wonder if I should use another program?
Upvotes: -2
Views: 629
Reputation: 4218
Double check that you have installed the correct package. There are two packages available, pynotify
and pyinotify
. Please note the additional letter i
in the second one.
The error message says that pyinotify
is missing.
So check the output of pip list
(or maybe pip3 list
, depending on your environment).
Upvotes: 0