VoxForge
I am attempting to install HTK on my Ubuntu 18.04 machine. I have managed to successfully run
./configure --prefix=/tmp
and
make all
and
make install
however, when I run
ls /tmp/bin.linux
or sudo ls /tmp/bin.linux
I get the error message
ls: cannot access '/tmp/bin.linux': No such file or directory
All commands have been run through ~/voxforge/bin/htk
/tmp doesn't appear in ls, but its contents (including bin.linux) do appear for ls /tmp
After running ./configure CC=gcc34 --prefix=/home/Zeesy/voxforge/bin/htk I now get the error message
make: *** No targets specified and no makefile found. Stop.
When running make, make all, make install and make clean from voxforge/bin/htk.
I have no idea what's happening here. Any advice would be much appreciated!
--- (Edited on 8/22/2019 3:03 pm [GMT-0500] by Zeesy) ---
--- (Edited on 8/27/2019 12:26 pm [GMT-0400] by Seazzy) ---
--- (Edited on 8/27/2019 12:55 pm [GMT-0400] by Seazzy) ---
>I am attempting to install HTK on my Ubuntu 18.04 machine
from HTK 3.5 README instructions:
Each of these directories has its own makefile: HTKLib, HLMLib, HTKTools, HLMTools
run make in each of the above directories in order:
$ make -f MakefileCPU all
then make install in each directory
$ make -f MakefileCPU install
the HTK tools will be installed in bin.cpu
make sure bin.cpu is in your path
--- (Edited on 8/29/2019 7:43 pm [GMT-0400] by kmaclean) ---