Reputation: 4115
I am getting the below given error while executing the command sudo sphinx_lm_convert -i 9055.lm -o 9055.dmp
.
sphinx_lm_convert: error while loading shared libraries: libsphinxbase.so.1: cannot open shared object file: No such file or directory
I dont understand the reason. Please help.
Upvotes: 2
Views: 3751
Reputation: 25220
This error means that system fails to find the shared library in the location where it is installed. Most likely you installed it with default prefix /usr/local/lib which is not included into the library search path. You can fix it in the following ways:
To learn more about shared libraries and the system-wide configuration please read about dynamic libraries:
http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
Upvotes: 5