I am trying to run the kaldi TIMIT/s5 recipe on a remote server. The toolkit is installed and compiled in the server already. The original path where the toolkit is installed and compiled, is a 'read-only' directory where I do not have 'sudo' access to modify anything there. To run the scripts, I have copied the directories for the TIMIT recipe to my local location. I have changed KALDI_ROOT (in 'path.sh') to the original directory where the Kaldi toolkit is installed. When I am trying to run the script 'run.sh', I get the following error :
wav-to-duration: error while loading shared libraries: libkaldi-hmm.so: cannot open shared object file: No such file or directory
Then, I have added the following line to the end of the 'path.sh' file:
export LD_LIBRARY_PATH="$KALDI_ROOT/src/lib"
However, then I get the following error :
wav-to-duration: error while loading shared libraries: libfst.so.10: cannot open shared object file: No such file or directory
Is there any suggestions on how to modify the 'path.sh' file so that I could run Kaldi recipes on my local directory?
Thanks for all the answers