LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Look for application, that include command 'HList' (https://www.linuxquestions.org/questions/linux-newbie-8/look-for-application-that-include-command-hlist-905566/)

Syslie 09-29-2011 04:01 AM

Look for application, that include command 'HList'
 
Hi all! I'm install HTS-demo_CMU-ARCTIC-SLT (demo for hts speech syntesis). There in "readme" they recommend "You can see these files as HList -C hlist.conf cmp/cmu_us_arctic_slt_a0001.cmp.". But when I do it, I got: "bash: HList: command not found". yum search Hlist= 0 results. What application include command 'HList'? (OS - CentOS 5.6). Sorry for my English.

colucix 09-29-2011 04:21 AM

HList is provided by HTK (no binary packages available, only source code previous registration). If you have installed it as a requirement for HTS-demo, maybe you need only to add the HTK bin directory to your PATH. Check if bin/HList exists in the HTK installation directory.

Syslie 09-29-2011 04:30 AM

You are right! But Hlist located in 'HTKTools' directory. How i can add it to my PATH?

colucix 09-29-2011 04:34 AM

To add it permanently to your PATH, add the following line to $HOME/.bashrc (provided your shell is bash):
Code:

PATH=/path/to/HTKTools/bin:$PATH
change the part in grey with the actual full path of the directory containing the HList executable. On the other hand, if you don't want to change the PATH environment variable, you can execute HList using the full path on the command line:
Code:

/path/to/HTKTools/bin/HList -C hlist.conf cmp/cmu_us_arctic_slt_a0001.cmp


All times are GMT -5. The time now is 12:33 PM.