I have installed fsl
in Ubuntu 16.04 and when I type fslview
I get the following error:
/usr/local/fsl/bin/fslview_bin: error while loading shared libraries: libmng.so.1: cannot open shared object file: No such file or directory
Any ideas please?
libmng.so.1
, bu there's alibmng.so
in thelibmng-dev
package. – muru Jan 01 '17 at 15:20sudo ldconfig
. See Where does Ubuntu look for shared libraries? As muru says,libmng.so.1
isn't in 16.04. But a later version,libmng.so.2
, is in thelibmng2
package. Assuming you've compiled fslview, you're best off recompiling it against that version if you can. Please add more information to your question. – Eliah Kagan Jan 01 '17 at 16:36