Closed viprob-ai closed 3 months ago
Hi I tried building the package with colcon build and was not able run the examples. it throws error - unable to load shared library libvisp*.so
colcon build
but withcolcon build --symlink-install it works fine.
colcon build --symlink-install
When visp libraries are not found you can set LD_LIBRARY_PATH with the folder that contains the libraries, like
LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$VISP_WS/visp-build/lib
Not tested, but should work.
Hi I tried building the package with
colcon build
and was not able run the examples. it throws error - unable to load shared library libvisp*.sobut with
colcon build --symlink-install
it works fine.