Libicuuc.So.55: Cannot Open Shared Object File

error while loading shared libraries: libicuuc.so.50

It looks like the libicu RPM package is not installed on the compute nodes.

libicui18n.so.52: cannot open shared object file

As @mscdex has pointed out, libicu was looking for the libicu52 package. Somehow the repository got updated allowing me to pull the new libicu which depends on libicu52 that isn't available in the repository of 12.04, but in 14.04. Since there is no official trusted build of 14.04 in the docker registry, I made my own "base" ubuntu14.04 docker image which starts with 13.10 and upgrades to 14.04;

FROM ubuntu:saucy

ENV DEBIAN_FRONTEND noninteractive
# Work around initramfs-tools running on kernel 'upgrade': <http://bugs.debian.org/cgi- bin/bugreport.cgi?bug=594189>
ENV INITRD No

# Update OS.
RUN sed -i 's/saucy/trusty/g' /etc/apt/sources.list
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get dist-upgrade -y

# Install basic packages.
RUN apt-get install -y software-properties-common
RUN apt-get install -y curl git htop unzip vim wget

# Add files.
ADD root/.bashrc /root/.bashrc
ADD root/.gitconfig /root/.gitconfig
ADD root/scripts /root/scripts

RUN apt-get clean

# Set working directory.
ENV HOME /root
WORKDIR /root

CMD ["/bin/bash"]

Then in the Dockerfile of my worker, I installed libicu52 instead of libicu48 thus fixing all issues

Error with swift command in terminal in ubuntu 15.04

I tried this as well

apt-get install libicu-dev

It worked for me

Composer missing libraries in Ubuntu 18.04

composer shouldn't need that dependency, but in case it really does, this should work:

wget http://security.ubuntu.com/ubuntu/pool/main/i/icu/libicu55_55.1-7_amd64.deb
sudo dpkg -i libicu55_55.1-7_amd64.deb
sudo apt-get -f install

However, I'd post that as a bug to composer maintainers (github repo), because the package should have this as a dependency and install it along the way with apt.

Composer.phar is really a standalone program, so it doesn't need other dependencies. much like a snap package.

Error loading R package - libicui18n.so.68: cannot open shared object file

We can install the 'stringi' package

install.packages('stringi')

cannot open shared object file: No such file or directory

Your LD_LIBRARY_PATH doesn't include the path to libsvmlight.so.

$ export LD_LIBRARY_PATH=/home/tim/program_files/ICMCluster/svm_light/release/lib:$LD_LIBRARY_PATH

ICU 49 Built on a Debian System Fails to Load libicudata.so

I just took a look at the icu package on 12.04 LTS. It's an older version (4.8), but there the LDFLAGSICUDT flags are commented out in source/config/mh-linux and a comment states that linking it as data only would cause too many problems.

Commenting out LDFLAGSICUDT solves the problem.



Related Topics



Leave a reply



Submit