Ask Your Question
3

Is it possible to address the UnsatisfiedLinkError with regards to the absence of pytorch_jni in java.library.path?

asked 2022-03-26 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-04-10 23:00:00 +0000

qstack gravatar image

Yes, it is possible to address the UnsatisfiedLinkError with regards to the absence of pytorchjni in java.library.path. You can solve this error by adding the path to the pytorchjni library to the java.library.path system property.

For example, you can add the following line to your code:

System.setProperty("java.library.path", "/path/to/pytorch_jni");

This will add the path to the pytorchjni library to the java.library.path system property. You can replace "/path/to/pytorchjni" with the actual path to the pytorch_jni library on your system.

Alternatively, you can also specify the java.library.path system property when running your Java program by using the following command line argument:

java -Djava.library.path=/path/to/pytorch_jni YourMainClass

This will set the java.library.path system property to the specified path before running your Java program.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-03-26 11:00:00 +0000

Seen: 10 times

Last updated: Apr 10 '22