Hello everyone, I have managed to complete Advanced Tello Programming with Python 3, OpenCV, and ArUco Markers - Course 1/3 without problems however in lesson 2 of Advanced Tello Programming with Python 3, OpenCV, and ArUco Markers - Course 2/3 , where point and click flying is done, I got the following error:
INFO] tello.py - 107 - Tello instance was initialized. Host: ‘192.168.10.1’. Port: ‘8889’.
2021-06-30 15:34:30,113 INFO Tello instance was initialized. Host: ‘192.168.10.1’. Port: ‘8889’.
[INFO] tello.py - 422 - Send command: ‘command’
2021-06-30 15:34:30,127 INFO Send command: ‘command’
[INFO] tello.py - 446 - Response command: ‘ok’
2021-06-30 15:34:30,237 INFO Response command: ‘ok’
2021-06-30 15:34:30,242 ERROR Exiting Tello Process with exception: No module named ‘scipy’
Traceback (most recent call last):
File “tello_script_runner.py”, line 259, in process_tello_video_feed
handler_module = importlib.import_module(handler_file)
File “C:\Users\juang\AppData\Local\Programs\Python\Python37\lib\importlib_init_.py”, line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File “”, line 1006, in _gcd_import
File “”, line 983, in _find_and_load
File “”, line 967, in _find_and_load_unlocked
File “”, line 677, in _load_unlocked
File “”, line 728, in exec_module
File “”, line 219, in _call_with_frames_removed
File “C:\Users\juang\Documents\GitHub\tello-adv-aruco\point-n-click-flying.py”, line 3, in
from droneblocksutils.aruco_utils import detect_distance_from_image_center, draw_center_point
File “C:\Users\juang\Documents\GitHub\tello-adv-aruco\droneblocksutils\aruco_utils.py”, line 4, in
from imutils.perspective import order_points
File “C:\Users\juang\Documents\GitHub\tello-adv-setup\GAV\lib\site-packages\imutils\perspective.py”, line 5, in
from scipy.spatial import distance as dist
ModuleNotFoundError: No module named ‘scipy’
[INFO] tello.py - 455 - Send command (no response expected): ‘rc 0 0 0 0’
2021-06-30 15:34:30,246 INFO Send command (no response expected): ‘rc 0 0 0 0’
I would appreciate if anyone knows how I can solve it
thank you very much to all