Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error while loading shared libraries: libicui18n.so.68

I got this error after installing nodejs and npm using pacman:

node: error while loading shared libraries: libicui18n.so.68: cannot open shared object file: No such file or directory

I already tried setting LD_LIBRARY_PATH to /usr/local/lib/ and that hasn't worked and I also have tried looking for the file everywhere and haven't found it.

LD_LIBRARY_PATH=/usr/local/lib/
find / -iname libicui18n.so.68
like image 798
Mat Avatar asked Mar 01 '23 19:03

Mat


1 Answers

I ran into the same issue, but updating the system resolved it for me. Use:

$ pacman -Syu
like image 62
odili Avatar answered Mar 05 '23 17:03

odili