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
Tensorflow 2.17.1 is currently supported by tfio, but tf 2.18 is throwing the following error:
>>> import tensorflow as tf
>>> tf.__version___
'2.18.0
>>> import tensorflow_io as tfio
.devenv/state/venv/lib/python3.11/site-packages/tensorflow_io/python/ops/__init__.py:98: UserWarning: unable to load libtensorflow_io_plugins.so: unable to open file: libtensorflow_io_plugins.so, from paths: ['.devenv/state/venv/lib/python3.11/site-packages/tensorflow_io/python/ops/libtensorflow_io_plugins.so']
caused by: ['.devenv/state/venv/lib/python3.11/site-packages/tensorflow_io/python/ops/libtensorflow_io_plugins.so: undefined symbol: _ZN3tsl8str_util8EndsWithESt17basic_string_viewIcSt11char_traitsIcEES4_']
warnings.warn(f"unable to load libtensorflow_io_plugins.so: {e}")
.devenv/state/venv/lib/python3.11/site-packages/tensorflow_io/python/ops/__init__.py:104: UserWarning: file system plugins are not loaded: unable to open file: libtensorflow_io.so, from paths: ['.devenv/state/venv/lib/python3.11/site-packages/tensorflow_io/python/ops/libtensorflow_io.so']
caused by: ['.devenv/state/venv/lib/python3.11/site-packages/tensorflow_io/python/ops/libtensorflow_io.so: undefined symbol: _ZN3tsl8str_util9LowercaseB5cxx11ESt17basic_string_viewIcSt11char_traitsIcEE']
warnings.warn(f"file system plugins are not loaded: {e}")
Pinning tf to 2.17.1 solves the issue.
Is tf 2.18.0 support planned?
The text was updated successfully, but these errors were encountered:
Hi all,
Tensorflow 2.17.1 is currently supported by tfio, but tf 2.18 is throwing the following error:
Pinning tf to 2.17.1 solves the issue.
Is tf 2.18.0 support planned?
The text was updated successfully, but these errors were encountered: