Kelvin Tan
Kelvin Tan

Reputation: 992

Qt error , libtiff.so.4 not found

I try to build an Qt-opencv application in Ubuntu 13.04 64 bit but it keeps warning that "libtiff.so.4, needed by /usr/local/lib/libopencv_highgui.so, not found (try using -rpath or -rpath-link)". How could I resolve this problem?

Upvotes: 2

Views: 1520

Answers (1)

Bruno
Bruno

Reputation: 311

The same happened to me on Ubuntu 13.10 and I solved installing the libtiff4 You can do it by typing

sudo apt-get install libtiff4

on terminal or using the synaptic manager

Upvotes: 1

Related Questions