Custom Model Evaluator missing GLIB library with Modeling Objective evaluation

Hello,

I am using a custom model evaluator to compute metrics in a Modeling Objective.
But when running the evaluation I am having the following error: "ImportError: /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29’ not found (required by /app/work-dir/environment/lib/python3.10/site-packages/pandas/_libs/window/aggregations.cpython-310-x86_64-linux-gnu.so)
"

I tried installing in the Code Repo of the evaluator:

  • gxx_linux-64
  • gcc_linux-64
  • libstdcxx-devel_linux-64
  • libstdcxx-ng
  • pandas (which seems to be the one requiring the library)

But so far I was unable to find the correct library to install to fix the issue.

Does anyone already had this issue? Please feel free to comment and write suggestions

Thanks

Try this: https://stackoverflow.com/a/74533050

Hello William,

Thank you very much for you answer,
I installed the libraries mentioned in the stackoverflow but unfortunately the same error is still appearing, :frowning:

I even tried installing the complete gcc/gxx through conda in Code Repo but no progress,

Romain