valgur / velodyne_decoder

Fully-featured C++/Python Velodyne packet decoder
BSD 3-Clause "New" or "Revised" License
39 stars 12 forks source link

error on import in develop branch #9

Closed sparshtelus closed 1 year ago

sparshtelus commented 1 year ago

After installing the package from develop branch, I am getting the following error on import.

image

`--------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last)

in ----> 1 import velodyne_decoder as vd /opt/conda/lib/python3.8/site-packages/velodyne_decoder/__init__.py in 2 from collections import namedtuple 3 ----> 4 from velodyne_decoder.velodyne_decoder_pylib import * 5 from velodyne_decoder.velodyne_decoder_pylib import __version__ as _pylib_version 6 ModuleNotFoundError: No module named 'velodyne_decoder.velodyne_decoder_pylib'`
valgur commented 1 year ago

Sorry about that. The develop branch is under active development and I accidentally introduced a regression when migrating the packaging setup to scikit-build and conan. It's fixed now.

sparshtelus commented 1 year ago

Thanks a lot