You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package deployed from pypi (python3.9 -m pip install ai-edge-litert==1.0.1) requires GLIBCXX_3.4.30, which is newer than many currently supported linux distributions have available. Please consider lowering the minimum requirement in the builds pushed to pypi so users of older, but still supported versions of RHEL 9 and the like can still use this package without recompiling.
$ python3.9 -c 'from ai_edge_litert.interpreter import Interpreter'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/nqh/workspace/bl/venv-py3.9/lib64/python3.9/site-packages/ai_edge_litert/interpreter.py", line 33, in <module>
from ai_edge_litert import _pywrap_tensorflow_interpreter_wrapper as _interpreter_wrapper
ImportError: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by /home/nqh/workspace/bl/venv-py3.9/lib64/python3.9/site-packages/ai_edge_litert/_pywrap_tensorflow_interpreter_wrapper.so)
$ cat /etc/redhat-release
Rocky Linux release 9.5 (Blue Onyx)
$ strings /lib64/libstdc++.so.6 | grep GLIBCXX | tail -4
GLIBCXX_3.4.27
GLIBCXX_3.4.28
GLIBCXX_3.4.29
GLIBCXX_DEBUG_MESSAGE_LENGTH
The text was updated successfully, but these errors were encountered:
The package deployed from pypi (
python3.9 -m pip install ai-edge-litert==1.0.1
) requiresGLIBCXX_3.4.30
, which is newer than many currently supported linux distributions have available. Please consider lowering the minimum requirement in the builds pushed to pypi so users of older, but still supported versions of RHEL 9 and the like can still use this package without recompiling.The text was updated successfully, but these errors were encountered: