I've developed a python package (that's written in C++, compiled using pybind11 and has python bindings) called npy-patcher.
Problem
When I include import matlab.engine into a script, this breaks my module like so:
import matlab.engine
from npy_patcher import PatcherFloat
Error Message
ImportError: /usr/local/MATLAB/R2022b/extern/bin/glnxa64/../../../sys/os/glnxa64/libstdc++.so.6: version `GLIBCXX_3.4.29' not found (required by /home/anaconda3/envs/torch/lib/python3.8/site-packages/npy_patcher.cpython-38-x86_64-linux-gnu.so)
I've developed a python package (that's written in C++, compiled using
pybind11
and has python bindings) called npy-patcher.Problem
When I include
import matlab.engine
into a script, this breaks my module like so:Error Message
Environment