error while loading shared libraries: libmkl_intel_lp64.so
See original GitHub issueHi,
Thank you for releasing the codes. I met problem with marching cube at last of the demo, the error is:
./isosurface/computeMarchingCubes: error while loading shared libraries: libmkl_intel_lp64.so: cannot open shared object file: No such file or directory
However I’ve tried many methods to reinstall mkl, add this file to lib path and even move it to the same folder with computeMarchingCubes, neither of these methods work.
Any idea on solving this would be appreciated.
Thanks!
Issue Analytics
- State:
- Created 4 years ago
- Comments:10
Top Results From Across the Web
using mkl, error while loading shared libraries - Stack Overflow
a.out: error while loading shared libraries: libmkl_intel_lp64.so: cannot open shared object file: No such file or directory.
Read more >error while loading shared libraries: libmkl_intel_lp64.so
The missing step was the execution of the following command: source /opt/intel/oneapi/setvars.sh.
Read more >error while loading shared libraries: libmkl_intel_lp64.so ...
Solved: HI, I have compiled a source code on my system. After giving the correct path of binaries created, I am trying to...
Read more >error while loading shared libraries: libboeim_kd_64.so
I am checking the keycode of Data Services using License Manager in Suse12 running DataService 4.2. I ran the command ./LicenseManager -v in...
Read more >error while loading shared libraries: libcudart.so.7.5
I'm trying to help my user who is getting this message: probtrackx2_gpu: error while loading shared libraries: libcudart.so.7.5: cannot open shared object file: ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think you can modify
LIB_PATH
to correct mkl path. TheLIB_PATH
provided by the author is set to author’s path, which is not correct. However, the author has provided a link library available in this github repo, which is in the current folder path.Maybe you can try this:
./isosurface/tbb/tbb2018_20180822oss/lib/intel64/gcc4.7
Thanks to @qiao1025566574 for providing an alternative to the original method. I have made slight changes based on his suggestion and seems to fix the issue. Everything works nicely afterwards. In the
demo.py
script, I have changed thecreate_obj
function as follow: