Open beesuns opened 3 years ago
If you're not doing anything with drones and Mavlink, you can leave mavlink out.
@ghostop14 Thanks for your reply. I am not sure if this was related to above mentioned problem. I got this error message when I tried to run sparrow-wifi:
kali@kali:~/Downloads/sparrow-wifi$ sudo ./sparrow-wifi.py
[sudo] password for kali:
Traceback (most recent call last):
File "/home/kali/Downloads/sparrow-wifi/./sparrow-wifi.py", line 28, in <module>
from dateutil import parser
ModuleNotFoundError: No module named 'dateutil'
Tried to install dateutil:
kali@kali:~/Downloads/sparrow-wifi$ sudo pip3 install python-dateutil
Requirement already satisfied: python-dateutil in /usr/local/lib/python3.9/site-packages (2.8.1)
Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.9/site-packages (from python-dateutil) (1.15.0)
Run again:
kali@kali:~/Downloads/sparrow-wifi$ sudo ./sparrow-wifi.py
Traceback (most recent call last):
File "/home/kali/Downloads/sparrow-wifi/./sparrow-wifi.py", line 28, in <module>
from dateutil import parser
ModuleNotFoundError: No module named 'dateutil'
beesuns you were on the right track. Is it possible /usr/local/lib/python3.9 isn't in your PYTHONPATH? Looks like it's already installed there. Also looks like you have a python reference above to /home/kali/.local/lib/python3.9. Sounds like your python path may be the problem.
Kali Linux version:
Linux kali 5.9.0-kali5-amd64 #1 SMP Debian 5.9.15-1kali1 (2020-12-18) x86_64 GNU/Linux
pip version:pip 20.3.3 from /home/kali/.local/lib/python3.9/site-packages/pip (python 3.9)
qtchart installed:python3-pyqt5.qtchart is already the newest version (5.15.2+dfsg-1).
But when I run
sudo pip3 install QScintilla gps3 dronekit manuf python-dateutil numpy matplotlib
, it gave error message.Please help me to fix this. Thanks!