Search code examples
linuxbashhtk

bash does not find HTK commands


I am using HTK for quite some time now and it used to work flawlessly. Off late (might have changed some environmental variables in the meantime, cant remember which ones though!), all the HTK commands are "not to be found". Executing HCompV for example gave a

bash: /usr/local/bin/HCompV: No such file or directory

even though HCompV is visible in /usr/local/bin. Recompiling and installing HTK was futile. Running HCompV (or any other HTK commands) from the bin folder of the compiled HTK also gave the same error. Any ideas why?


Solution

  • Solved!! I had to reinstall the 32 bit libs on my 64 bit ubuntu though I had it installed previously. Any ideas why this helped?

    These is what I did:

    sudo apt-get install --reinstall ia32-libs

    sudo apt-get install --reinstall libc6-i386

    This page has more details.

    Thank you guys for your reply. You guys rock.