extras/check_dependencies.sh rm -f cub tar xozf openfst-1.7.2.tar.gz tar zxvf sctk-20159b5.tar.gz tar -xmzf cub-1.8.0.tar.gz gzip: stdin: unexpected end of file tar: Child returned status 1 tar: Error is not recoverable: exiting now gzip: stdin: unexpected end of file make: *** [Makefile:131: sctk] Error 2 make: *** Waiting for unfinished jobs.... tar: Child returned status 1 tar: Error is not recoverable: exiting now make: *** [Makefile:185: cub/common.mk] Error 2 extras/check_dependencies.sh: automake is not installed. extras/check_dependencies.sh: autoconf is not installed. extras/check_dependencies.sh: gfortran is not installed extras/check_dependencies.sh: neither libtoolize nor glibtoolize is installed extras/check_dependencies.sh: subversion is not installed extras/check_dependencies.sh: Intel MKL does not seem to be installed. ... Run extras/install_mkl.sh to install it. Some distros (e.g., Ubuntu 20.04) provide ... a version of MKL via the package manager, but verify that it is up-to-date. ... You can also use other matrix algebra libraries. For information, see: ... http://kaldi-asr.org/doc/matrixwrap.html extras/check_dependencies.sh: Some prerequisites are missing; install them using the command: sudo apt-get install automake autoconf gfortran libtool subversion make: *** [Makefile:39: check_required_programs] Error 1
时间: 2024-04-25 08:25:53 浏览: 181
PyPI 官网下载 | appier_extras-0.13.14.tar.gz
这是一个关于安装Kaldi时出现的错误信息,提示缺少一些依赖库,包括automake、autoconf、gfortran、libtool、subversion等。建议使用以下命令安装缺少的依赖:
sudo apt-get install automake autoconf gfortran libtool subversion
另外,如果需要使用Intel MKL库,则需要运行extras/install_mkl.sh安装该库。如果使用其他的矩阵代数库,可以参考http://kaldi-asr.org/doc/matrixwrap.html。
阅读全文