Open jingnanshi opened 1 year ago
I had the same error when running the teaser_python_ply.py
example. Somehow, changing import orders with open3d solved the issue:
import open3d as o3d
import teaserpp_python
-> bug
import teaserpp_python
import open3d as o3d
-> OK
Describe the bug Import teaserpp_python before scipy may cause scipy to use the system path to libstdc++.so instead of the one in anaconda. Error message looks like this:
Steps to Reproduce Seems to happen in a Python 3.9 environment when you install
scipy
beforeteaserpp_python