kaolin
kaolin copied to clipboard
Import kaolin error
After install last version from repo I have this error:
Python 3.6.9 (default, Nov 7 2019, 10:44:02)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import kaolin
Warning: unable to import datasets/nusc:
No module named 'nuscenes'
Traceback (most recent call last):
File "<path>/kaolin/kaolin/datasets/__init__.py", line 11, in <module>
from .nusc import NuscDetection
File "<path>/kaolin/kaolin/datasets/nusc.py", line 21, in <module>
from nuscenes.utils.geometry_utils import transform_matrix
ModuleNotFoundError: No module named 'nuscenes'
Warning: unable to import datasets/nusc:
None
I've commented this:
File "<path>/kaolin/kaolin/datasets/__init__.py", line 11, in <module>
from .nusc import NuscDetection
before fix
Maybe you should follow the installation instruction and install some packages:
pip install --no-dependencies nuscenes-devkit opencv-python-headless scikit-learn joblib pyquaternion cachetools
@ocean1100 thanks for the observation, ... although that instruction is only placed in the windows section of the documentation (it works for linux though). Maybe the documentation should be updated.
Closing for inactivity