On Wed, Oct 12, 2011 at 8:14 PM, Endre <
galacz...@gmail.com> wrote:
> ImportError: couldn't find libchromaprint
>
> Although according to:
>
> find /usr/local/lib/libch*
> /usr/local/lib/libchromaprint.so
> /usr/local/lib/libchromaprint.so.0
> /usr/local/lib/libchromaprint.so.0.1.3
>
> it should be installed.
> Are there any ways to diagnose this scenario so it can be avoided in
> the future?
I believe the problem is that /usr/local/lib is not in the linker
search path on your OS. You should be able to use something like this
temporarily:
export LD_LIBRARY_PATH=/usr/local/lib
To set it permanently, you can add /usr/local/lib to
/etc/ld.so.conf.d/ (/etc/ld.so.conf, depending on the OS):
echo /usr/local/lib > /etc/ld.so.conf.d/local.conf
ldconfig
Lukas