当前位置: 首页 > 工具软件 > HTK > 使用案例 >

build htk source code

刁文光
2023-12-01
  1. download source file: http://htk.eng.cam.ac.uk/download.shtml

  2. 安装lib

    sudo apt install gcc-multilib # to solve fatal error: bits/libc-header-start.h: No such file or directory #include <bits/libc-header-start.h> // 这个库可以在64位的机器上产生32位的程序或者库文件
    sudo apt intall libx11-dev libx11-dev:i386
    
  3. 解压

    gzip -dk HTK-3.4.1.tar.gz
    tar -xf HTK-3.4.1.tar
    
  4. configure & make & install

    ./configure --prefix=/builddir/htk/
    make all #在make HTKTool的时候,遇到“Makefile:77:*** missing separator (did you mean TAB instead of 8 spaces?).” 把HTKTool里的Makefile中77行的空格改成tab
    make install
    
  5. ~/.bashrc中加入export PATH=/builddir/htk/bin:$PATH, 然后source ~/.bashrc使之生效

 类似资料:

相关阅读

相关文章

相关问答