0

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?

Eliah Kagan
  • 117,780

1 Answers1

0

First try installing package libmng2 since libmng1 is for ubuntu precise and below

sudo apt-get install libmng2

Else if the package already exist,try linking to libmng.so.2

sudo ln -s /usr/lib/x86_64-linux-gnu/libmng.so.2 /usr/lib/x86_64-linux-gnu/libmng.so.1
  • In my case, the exact command were: sudo ln -s /usr/lib64/libmng.so.2 /usr/lib64/libmng.so.1 on OpenSUSE – Elikill58 May 29 '23 at 09:59