[vtk-developers] VTK-5-2 python install - missing libvtkverdict.so.1.2

Brad King brad.king at kitware.com
Sat Jun 7 12:12:46 EDT 2008


Darren Weber wrote:
> 
> I forgot to mention that I'm running an amd64 version of Ubuntu 7.04.  I
> found a fix, but it seems like a nasty hack:
> 
> sudo -i
> cp -r -d /usr/local/lib/vtk-5.2/* /usr/lib/

You don't have to do that.  All that does is put the libs in a place
that the runtime linker will search.  Instead just tell the runtime
linker how to search in "/usr/local/lib/vtk-5.2".  You can do this by
running

$ export LD_LIBRARY_PATH=/usr/local/lib/vtk-5.2:$LD_LIBRARY_PATH
$ python

This is a standard unix shared library thing.

-Brad



More information about the vtk-developers mailing list