When trying to fun fsearch
I got this error message:
fsearch: error while loading shared libraries: libicuuc.so.74: cannot open shared object file: No such file or directory
It looks very similar to what is reported here, so I used the solution reported there (namely, create a symlink to the module that I do have):
β°β ls -ls /usr/lib/libicu* | grep libicuuc.so ββ―
0 lrwxrwxrwx 1 root root 16 may 9 11:25 /usr/lib/libicuuc.so -> libicuuc.so.75.1
0 lrwxrwxrwx 1 root root 16 may 9 11:25 /usr/lib/libicuuc.so.75 -> libicuuc.so.75.1
2020 -rwxr-xr-x 1 root root 2062384 may 9 11:25 /usr/lib/libicuuc.so.75.1
sudo ln -s /usr/lib/libicuuc.so /usr/lib/libicuuc.so.74
After that I re-installed fsearch
.
However, now when I run it, I get a different error:
fsearch: symbol lookup error: fsearch: undefined symbol: unorm2_getNFDInstance_74
which makes me thing that creating that symlink is not the right thing to do.
Could someone help please?
Thanks
Cheers, Manuel