hello i have a problem in installing mitmf in kali-linux version 2020.1a
during installation i performed following task in shell
apt-get install python-dev python-setuptools libpcap0.8-dev libnetfilter-queue-dev libssl-dev libjpeg-dev libxml2-dev libxslt1-dev libcapstone3 libcapstone-dev libffi-dev file
git clone https://github.com/byt3bl33d3r/MITMf
cd MITMf && git submodule init && git submodule update --recursive
pip install -r requirements.txt
but in step 4 there is obstacle that's: pip command not found
so i try to install pip
with command: sudo apt install python-pip
but it doesn't work and says : Unable to locate package python-pip
then i try to install pip3
with command: sudo apt install python3-pip
and it get install and i complete the step 4 command of installing mitmf
i.e : 4. pip install -r requirements.txt
after that when i run help command for mitmf
i.e., python mitmf.py --help
It display following things
Traceback (most recent call last):
File "mitmf.py", line 29, in <module>
import core.responder.settings as settings
File "/home/tester/MITMf/core/responder/settings.py", line 24, in <module>
from core.configwatcher import ConfigWatcher
File "/home/tester/MITMf/core/configwatcher.py", line 20, in <module>
import pyinotify
ImportError: No module named pyinotify
I have also try with this command : python3 mitmf.py
then following result popup
File "mitmf.py", line 38
print get_banner()
^
SyntaxError: invalid syntax
so please help me to solve problem with no module name pynotify. what to do to solve this problems. I get stuck here and unable to solve this problem .