Closed wavymazy closed 1 year ago
@wavymazy
Are you running centos 7?
It seems you are using an old version of libstdc++.so.6 version. You need upgrade to a newer version:
sudo yum -y install libstdc++
@frankfliu Yes I am. Thank you very much, I'll try that.
After further digging it seems to not be trivial. CXXABI_1.3.9 is associated with gcc version 5.1. CentOS 7 has gcc 4.8.5.
@wavymazy We have centos 7 nightly test: https://github.com/deepjavalibrary/djl-demo/blob/master/.github/workflows/canary-centos.yml#L92
@wavymazy
Sorry, I can reproduce your issue. I checked our code, we don't support centos:7. We only support amazonlinux:2 and ubuntu:18.04+
I'm trying to figure out why our canary test passed.
Thank you @frankfliu for the explanation. This makes sense.
I created a PR to add centos 7 support: https://github.com/deepjavalibrary/djl/pull/2402
Will be available soon in 0.21.0 release.
Thank you @frankfliu ! Do you have an estimate of when the version 0.21.0 will be available ?
0.21.0 is published on maven central. You can try it now.
Greetings,
I'm having an issue that I'm not very sure I understand. I'm using the ai.djl.sentencepiece package in a class I wrote in Java and I get this error below:
I have added the package dependency to the pom.xml of my project such as:
Is there something I'm missing ? Any help os greatly appreciated. Thank you.