So I tried installing prince on my CentOS 5.6 dev machine like so:
I then get the following error:
/usr/local/lib/prince/bin/prince: error while loading shared libraries: libtiff.so.4: cannot open shared object file: No such file or directory
A quick check shows I have libtiff.so.3 and not libtiff.so.4... So I took a stab in the dark and made a symlink so libtiff.so.4 points to libtiff.so.3, but now I get the following error:
/usr/local/lib/prince/bin/prince: error while loading shared libraries: libcurl.so.4: cannot open shared object file: No such file or directory
Not sure how to fix these problems, any help would be appreciated
# Download prince
wget http://www.princexml.com/download/prince-8.0-linux.tar.gz
# Extract
tar xzf prince-*
# Install
cd prince-*
./install.sh
# Test it works OK
prince --help
I then get the following error:
/usr/local/lib/prince/bin/prince: error while loading shared libraries: libtiff.so.4: cannot open shared object file: No such file or directory
A quick check shows I have libtiff.so.3 and not libtiff.so.4... So I took a stab in the dark and made a symlink so libtiff.so.4 points to libtiff.so.3, but now I get the following error:
/usr/local/lib/prince/bin/prince: error while loading shared libraries: libcurl.so.4: cannot open shared object file: No such file or directory
Not sure how to fix these problems, any help would be appreciated