generalized-intelligence / GAAS

GAAS is an open-source program designed for fully autonomous VTOL(a.k.a flying cars) and drones. GAAS stands for Generalized Autonomy Aviation System.
https://www.gaas.dev
BSD 3-Clause "New" or "Revised" License
1.94k stars 444 forks source link

ModuleNotFoundError: No module named 'bresenham3d' #52

Closed machenxiang closed 5 years ago

machenxiang commented 5 years ago

When python Navigator.py it occurs this problem. Traceback (most recent call last): File "Navigator.py", line 24, in from path_optimization.path_pruning import PathPruning File "/home/mcx/GAAS/software/Navigator/path_optimization/path_pruning.py", line 3, in from bresenham3d import Bresenham3D ModuleNotFoundError: No module named 'bresenham3d'

I have google this problem. But i just find bresenham no bresenham3d. How can i solve this problem? Thanks in advance.

metaphox commented 5 years ago

The package bresenham3d is just the file bresenham3d.py which should be found under /home/mcx/GAAS/software/Navigator/path_optimization, the same directory as path_pruning.py. Please make sure you have this file in your system.

machenxiang commented 5 years ago

The package bresenham3d is just the file bresenham3d.py which should be found under /home/mcx/GAAS/software/Navigator/path_optimization, the same directory as path_pruning.py. Please make sure you have this file in your system.

Thank you