-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java.lang.UnsatisfiedLinkError: /tmp/javacpp4839791561492098/libjniopencv_core.so #436
Comments
Could you also provide the stack trace that comes with the exception? |
Hi, I have copied the stack trace in the provided gist link. Please let me know if you have any problem accessing it. Thanks |
That means OpenMP is missing from your system, so try to install it. |
I am getting this now. Caused by: java.lang.UnsatisfiedLinkError: /tmp/javacpp4923781916138838/libjnind4j.so: /usr/lib/x86_64-linux-gnu/libgomp.so.1: version `GOMP_4.0' not found (required by /tmp/javacpp4923781916138838/libnd4j.so) my libraries are here AND /usr/lib/gcc/x86_64-linux-gnu/4.8$ ls -l libgomp* |
Never mind, Got it fixed by installing gcc 5 version Thanks for your support. Appreciated. |
I see. I tried to bundle OpenMP, but since it's pretty much a system library, I think users will need to make sure to have it installed. It might not be something we can bundle after all... |
I had this same issue. Was working on Windows and it would run fine locally and from jar, but not on aws, all other features of the project worked but the opencv was failing with the same error. Turns out git installed lipgomp on windows and i'm sure on my Ubuntu box where it was working too. |
I confirmed that we can bundle |
…Linux distributions (issue bytedeco/javacv#436)
|
Hello,
I am trying deeplearning4j for Image Recognition, able to run the code in my local ubuntu(16.04) machine with no issues(using intelliJ). when i move the code to ubuntu(14.04) server, facing the below issue.
https://gist.github.com/surezsivam/a3557f4af6befd089d4da75f086aa34d
Using the same pom.xml without any modification from deeplearning4j examples.
The text was updated successfully, but these errors were encountered: