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
When using the NuGet package for ONNX Runtime Extensions on Linux, the application fails to run with the following error:
Microsoft.ML.OnnxRuntime.OnnxRuntimeException: [ErrorCode:NoSuchFile] The ONNX Runtime extensions library was not found. The Microsoft.ML.OnnxRuntime.Extensions NuGet package must be referenced by the project to use 'OrtExtensions.RegisterCustomOps.
Further investigation using export LD_DEBUG=all revealed that the actual error is due to a dependency on libssl.so.1.1:
file=libssl.so.1.1 [0]; needed by (...) net6.0/any/runtimes/linux-x64/native/libortextensions.so [0]
The target machine has the latest libssl (libssl3.so) installed, but not the specific version required by the ONNX Runtime Extensions library.
Questions:
Is this dependency on libssl.so.1.1 (or libssl in general) necessary?
If so, is it possible to include the required ssl and libcrypto .so files within the NuGet package?
Impact:
This issue makes it difficult to install and use onnxruntime-extensions through a NuGet package on Linux machines that don't have the specific libssl.so.1.1 version installed.
Any guidance or solutions would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
When using the NuGet package for ONNX Runtime Extensions on Linux, the application fails to run with the following error:
Further investigation using
export LD_DEBUG=all
revealed that the actual error is due to a dependency onlibssl.so.1.1
:The target machine has the latest libssl (
libssl3.so
) installed, but not the specific version required by the ONNX Runtime Extensions library.Questions:
libssl.so.1.1
(or libssl in general) necessary?.so
files within the NuGet package?Impact:
This issue makes it difficult to install and use
onnxruntime-extensions
through a NuGet package on Linux machines that don't have the specificlibssl.so.1.1
version installed.Any guidance or solutions would be greatly appreciated.
The text was updated successfully, but these errors were encountered: