libicuuc.so.55: cannot open shared object file

Viewed 30289

While am compile using swift build, am getting following error in my Ubuntu machine

$swift build

/home/xxxxxxxxx/Downloads/swift-DEVELOPMENT-SNAPSHOT-2016-02-25-a-ubuntu15.10/us
r/bin/swift-build: error while loading shared libraries: libicuuc.so.55: cannot
open shared object file: No such file or directory

How can i fix this issue?

Thanks.

5 Answers

I searched on the net and find a list in debian packages that shows the libicuuc.so.55 file.

apt-get install libicu55

Will resolve the issue.

Related