The Hidden Markov Model Toolkit (HTK) is a portable toolkit for building and manipulating hidden Markov models. HTK is primarily used for speech recognition research.
-
HTK’s licence requires you to register before you can download the toolkit.
-
Extract HTK-3.4.1.tar.gz
$ tar -xvzf HTK-3.4.1.tar.gz
- Compile and Install
$ cd HTK-*/
- If you have 32 bit system
$ ./configure --prefix=/opt/htk
$ make all
$ sudo make install
- If you have 64 bit system.
#Install libc6-dev-i386 libx11-dev
$ sudo apt-get install libc6-dev-i386 libx11-dev
$
$ linux32 bash #go to 32 bit terminal
$ ./configure --prefix=/opt/htk
$ make all
$ sudo mkdir /opt/htk
$ sudo make Install
Remember to set path
$ echo 'export PATH=$PATH:/opt/htk/' >> ~/.bashrc