fdp0525 / G2LTex

Code for CVPR 2018 paper --- Texture Mapping for 3D Reconstruction with RGB-D Sensor
146 stars 29 forks source link

./G2LTex: error while loading shared libraries: libG2LTex.so.1: cannot open shared object file: No such file or directory #5

Open zengletian1491 opened 4 years ago

zengletian1491 commented 4 years ago

when I typed in the following two commands: cd G2LTex/bin ./G2LTex ../Data/bloster/textureimages ../Data/bloster/bloster.ply errors occurred as follows: ./G2LTex: error while loading shared libraries: libG2LTex.so.1: cannot open shared object file: No such file or directory The associated solution about this problem did not work!Could you please give me some suggestions?

yanqingan commented 4 years ago

You need to tell your system where to locate the .so file. An easy way to solve the problem is "export LD_LIBRARY_PATH=/where/you/install/lib:$LD_LIBRARY_PATH".

zengletian1491 commented 4 years ago

You need to tell your system where to locate the .so file. An easy way to solve the problem is "export LD_LIBRARY_PATH=/where/you/install/lib:$LD_LIBRARY_PATH".

Thanks very much for your help! I compiled it successfully!