Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/bash/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Bash ubuntu中的htk“;使所有”;错误“;对“所有人”都不做任何事”;错误_Bash_Ubuntu_Speech Recognition_Hidden Markov Models_Htk - Fatal编程技术网

Bash ubuntu中的htk“;使所有”;错误“;对“所有人”都不做任何事”;错误

Bash ubuntu中的htk“;使所有”;错误“;对“所有人”都不做任何事”;错误,bash,ubuntu,speech-recognition,hidden-markov-models,htk,Bash,Ubuntu,Speech Recognition,Hidden Markov Models,Htk,大家好,实际上我正在Ubuntu 14.04.3上安装htk。 我按照per做了同样的操作,也遵循了per,但在尝试发出“全部生成”命令时仍然面临错误 我已经安装了所有32个lib,我还在修改make文件中的第77行,但仍然面临错误 我的make文件是 # ----------------------------------------------------------- #

大家好,实际上我正在Ubuntu 14.04.3上安装htk。 我按照per做了同样的操作,也遵循了per,但在尝试发出“全部生成”命令时仍然面临错误

我已经安装了所有32个lib,我还在修改make文件中的第77行,但仍然面临错误

我的make文件是

# ----------------------------------------------------------- 
#                                                             
#                          ___                                
#                       |_| | |_/   SPEECH                    
#                       | | | | \   RECOGNITION               
#                       =========   SOFTWARE                  
#                                                             
#                                                             
# ----------------------------------------------------------- 
#         Copyright: Cambridge University
#          1995-2006 Engineering Department
#                    http://htk.eng.cam.ac.uk
#                    http://mi.eng.cam.ac.uk
#                 
#   Use of this software is governed by a License Agreement   
#    ** See the file License for the Conditions of Use  **    
#    **     This banner notice must not be removed      **    
#                                                             
# ----------------------------------------------------------- 
# File: Makefile.  Generated from Makefile.in by configure.
# ----------------------------------------------------------- 

SHELL = /bin/sh
srcdir = .
top_srcdir = .

prefix = /home/exepaul/voxforge/bin/htk
exec_prefix = ${prefix}
bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin
libexecdir = ${exec_prefix}/libexec
datadir = ${prefix}/share
sysconfdir = ${prefix}/etc
sharedstatedir = ${prefix}/com
localstatedir = ${prefix}/var
libdir = ${exec_prefix}/lib
infodir = ${prefix}/share/info
mandir = ${prefix}/share/man
includedir = ${prefix}/include
oldincludedir = /usr/include

CC = gcc
CPPFLAGS = 
CFLAGS = $(CPPFLAGS) -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="i686"' -Wall -Wno-switch -g -O2
LDFLAGS = -L/usr/X11R6/lib 
LIBS = -lm -lX11 
INSTALL = /usr/bin/install -c

DESTDIR =

pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@

top_builddir = .

ACLOCAL = @ACLOCAL@
AUTOCONF = @AUTOCONF@
AUTOMAKE = @AUTOMAKE@
AUTOHEADER = @AUTOHEADER@

INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL}
transform = s,x,x,
MAKEINFO = @MAKEINFO@
PACKAGE = @PACKAGE@
VERSION = @VERSION@

HTKLIB  = HTKLib
HLMLIB  = HLMLib
HTKTOOLS = HTKTools
HLMTOOLS = HLMTools
LVREC = HTKLVRec
HTKBOOK = HTKBook
SUBDIRS = $(HTKLIB) $(HLMLIB) $(HTKTOOLS) $(HLMTOOLS) $(LVREC) $(BOOK) 
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_CLEAN_FILES = 
DIST_COMMON =  README ChangeLog Makefile.am \
Makefile.in aclocal.m4 configure configure.ac install-sh missing \
mkinstalldirs


DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)

TAR = gtar
GZIP_ENV = --best

.SUFFIXES:

# build rules
all: htktools hlmtools
$(HTKLIB)/HTKLib.a:
    (cd $(HTKLIB) && $(MAKE) HTKLib.a) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
htklib: $(HTKLIB)/HTKLib.a
$(HTKLIB)/HTKLiblv.a:
    (cd $(HTKLIB) && $(MAKE) HTKLiblv.a) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
htkliblv: $(HTKLIB)/HTKLiblv.a
$(HLMLIB)/HLMLib.a:
    (cd $(HLMLIB) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
hlmlib: $(HLMLIB)/HLMLib.a
htktools: $(HTKLIB)/HTKLib.a
    (cd $(HTKTOOLS) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
hlmtools: $(HLMLIB)/HLMLib.a
    (cd $(HLMTOOLS) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
hdecode: $(HTKLIB)/HTKLiblv.a
    (cd $(LVREC) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
book: 
    (cd $(HTKBOOK) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;

# installation
install-htktools: htktools
    (cd $(HTKTOOLS) && $(MAKE) install) \
    || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
install-hlmtools: hlmtools
    (cd $(HLMTOOLS) && $(MAKE) install) \
    || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
install-hdecode:
    (cd $(LVREC) && $(MAKE) install) \
    || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
install-book: book
    (cd $(HTKBOOK) && $(MAKE) install) \
    || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;

clean:
    /bin/rm -f *~
    @for dir in $(SUBDIRS); do \
      (cd $$dir && $(MAKE) clean) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
    done && test -z "$$fail"
distclean: clean
    /bin/rm -f Makefile config.h config.status config.cache config.log
    @for dir in $(SUBDIRS); do \
      (cd $$dir && $(MAKE) distclean) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
    done && test -z "$$fail"

install: install-htktools install-hlmtools
docs: book

mkinstalldir:                                               
    if [! -d $(bindir) -a X_ = X_yes ] ; then mkdir -p $(bindir) ; fi

.PHONY: all doc install clean distclean htklib-decode \
    htktools hlmtools hdecode docs book \
    install-htktools install-hlmtools install-hdecode install-book



  [1]: http://aravindev.blogspot.in/2013/08/installing-htk-34-on-ubuntu-64-bit-os.html
  [2]: http://www.voxforge.org/home/dev/acousticmodels/linux/create/htkjulius/tutorial/download

请帮忙,我已经试了两天了:(

这不是一个有效的
Makefile
。它看起来像一个
Makefile.in
或者
Makefile.am
,应该分别由
configure
和/或
automake
进一步处理,以生成一个实际可行的
Makefile
我一直在使用它。试着运行
make clean
makeall
之前。可能是错误的Makefile(正确的是
/htk/HLMTools/Makefile
),但是由于您收到的错误-与我的错误相同-运行
makeclean
应该这样做。请参阅。

是否
/configure
完成而没有任何错误?已在可能的重复中询问
# ----------------------------------------------------------- 
#                                                             
#                          ___                                
#                       |_| | |_/   SPEECH                    
#                       | | | | \   RECOGNITION               
#                       =========   SOFTWARE                  
#                                                             
#                                                             
# ----------------------------------------------------------- 
#         Copyright: Cambridge University
#          1995-2006 Engineering Department
#                    http://htk.eng.cam.ac.uk
#                    http://mi.eng.cam.ac.uk
#                 
#   Use of this software is governed by a License Agreement   
#    ** See the file License for the Conditions of Use  **    
#    **     This banner notice must not be removed      **    
#                                                             
# ----------------------------------------------------------- 
# File: Makefile.  Generated from Makefile.in by configure.
# ----------------------------------------------------------- 

SHELL = /bin/sh
srcdir = .
top_srcdir = .

prefix = /home/exepaul/voxforge/bin/htk
exec_prefix = ${prefix}
bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin
libexecdir = ${exec_prefix}/libexec
datadir = ${prefix}/share
sysconfdir = ${prefix}/etc
sharedstatedir = ${prefix}/com
localstatedir = ${prefix}/var
libdir = ${exec_prefix}/lib
infodir = ${prefix}/share/info
mandir = ${prefix}/share/man
includedir = ${prefix}/include
oldincludedir = /usr/include

CC = gcc
CPPFLAGS = 
CFLAGS = $(CPPFLAGS) -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="i686"' -Wall -Wno-switch -g -O2
LDFLAGS = -L/usr/X11R6/lib 
LIBS = -lm -lX11 
INSTALL = /usr/bin/install -c

DESTDIR =

pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@

top_builddir = .

ACLOCAL = @ACLOCAL@
AUTOCONF = @AUTOCONF@
AUTOMAKE = @AUTOMAKE@
AUTOHEADER = @AUTOHEADER@

INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL}
transform = s,x,x,
MAKEINFO = @MAKEINFO@
PACKAGE = @PACKAGE@
VERSION = @VERSION@

HTKLIB  = HTKLib
HLMLIB  = HLMLib
HTKTOOLS = HTKTools
HLMTOOLS = HLMTools
LVREC = HTKLVRec
HTKBOOK = HTKBook
SUBDIRS = $(HTKLIB) $(HLMLIB) $(HTKTOOLS) $(HLMTOOLS) $(LVREC) $(BOOK) 
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_CLEAN_FILES = 
DIST_COMMON =  README ChangeLog Makefile.am \
Makefile.in aclocal.m4 configure configure.ac install-sh missing \
mkinstalldirs


DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)

TAR = gtar
GZIP_ENV = --best

.SUFFIXES:

# build rules
all: htktools hlmtools
$(HTKLIB)/HTKLib.a:
    (cd $(HTKLIB) && $(MAKE) HTKLib.a) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
htklib: $(HTKLIB)/HTKLib.a
$(HTKLIB)/HTKLiblv.a:
    (cd $(HTKLIB) && $(MAKE) HTKLiblv.a) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
htkliblv: $(HTKLIB)/HTKLiblv.a
$(HLMLIB)/HLMLib.a:
    (cd $(HLMLIB) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
hlmlib: $(HLMLIB)/HLMLib.a
htktools: $(HTKLIB)/HTKLib.a
    (cd $(HTKTOOLS) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
hlmtools: $(HLMLIB)/HLMLib.a
    (cd $(HLMTOOLS) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
hdecode: $(HTKLIB)/HTKLiblv.a
    (cd $(LVREC) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
book: 
    (cd $(HTKBOOK) && $(MAKE) all) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;

# installation
install-htktools: htktools
    (cd $(HTKTOOLS) && $(MAKE) install) \
    || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
install-hlmtools: hlmtools
    (cd $(HLMTOOLS) && $(MAKE) install) \
    || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
install-hdecode:
    (cd $(LVREC) && $(MAKE) install) \
    || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;
install-book: book
    (cd $(HTKBOOK) && $(MAKE) install) \
    || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac;

clean:
    /bin/rm -f *~
    @for dir in $(SUBDIRS); do \
      (cd $$dir && $(MAKE) clean) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
    done && test -z "$$fail"
distclean: clean
    /bin/rm -f Makefile config.h config.status config.cache config.log
    @for dir in $(SUBDIRS); do \
      (cd $$dir && $(MAKE) distclean) \
      || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
    done && test -z "$$fail"

install: install-htktools install-hlmtools
docs: book

mkinstalldir:                                               
    if [! -d $(bindir) -a X_ = X_yes ] ; then mkdir -p $(bindir) ; fi

.PHONY: all doc install clean distclean htklib-decode \
    htktools hlmtools hdecode docs book \
    install-htktools install-hlmtools install-hdecode install-book



  [1]: http://aravindev.blogspot.in/2013/08/installing-htk-34-on-ubuntu-64-bit-os.html
  [2]: http://www.voxforge.org/home/dev/acousticmodels/linux/create/htkjulius/tutorial/download