Robotics StackExchange | Archived questions

unable to install gazebo-4.1 from source

gazebo: error while loading shared libraries: libgazebo_common.so.4: cannot open shared object file: No such file or directory

the solution given by wiki page echo '/usr/local/lib' | sudo tee /etc/ld.so.conf.d/gazebo.conf sudo ldconfig doesn't work......what to do ?

Asked by Rahul Sharma on 2014-12-12 10:15:43 UTC

Comments

Answers

Hi,

if you installed it using the default path and ubuntu > 14.04, try

$ echo '/usr/local/lib/x86_64-linux-gnu' | sudo tee 
$ sudo ldconfig

of you installed it to a custom path:

$ echo '/<my_custom_path>/lib/x86_64-linux-gnu' | sudo tee 
$ sudo ldconfig

if you have ubuntu < 14.04 you might need to forget the x86_64-linux-gnu part

Cheers, Andrei

Asked by AndreiHaidu on 2014-12-12 10:48:16 UTC

Comments