V2AI / Det3D

World's first general purpose 3D object detection codebse.
https://arxiv.org/abs/1908.09492
Apache License 2.0
1.49k stars 298 forks source link

ModuleNotFoundError: No module named 'det3d' when running create_data.py #72

Closed ilopezfr closed 4 years ago

ilopezfr commented 4 years ago

I'm following the instructions in GETTING_STARTED.md.

When running from Det3D directory:

python tools/create_data.py kitti_data_prep --root_path=KITTI_DATASET_ROOT

I'm getting the following error:

Traceback (most recent call last):
  File "tools/create_data.py", line 10, in <module>
    from det3d.datasets.kitti import kitti_common as kitti_ds
ModuleNotFoundError: No module named 'det3d'

Does anyone else have found the same issue?

tianweiy commented 4 years ago

that seems just a python path problem. if other things don't work, probably just try to add the path directly using sys library?

MeyLavie commented 4 years ago

Also, make sure that the build step (setup.py) was done successfully.