You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to install lex_lookup on Cygwin but I keep getting an error message:
$ cd testsuite
$ make lex_lookup
make: *** No rule to make target 'lex_lookup'. Stop.
How can I get this to work?
The text was updated successfully, but these errors were encountered:
I tested these steps in colab environment. Hope, this can solve your problem.
# download and decompress the package# wget http://tts.speech.cs.cmu.edu/awb/flite-2.0.5-current.tar.bz2# bzip2 -d flite-2.0.5-current.tar.bz2# tar -xvf flite-2.0.5-current.tar# mv flite-2.0.5-current flite# recently I notice, server tts.speech.cs.cmu.edu is off# let's use github's version instead, which is version 2.1-release
git clone https://github.com/festvox/flite
# install flitecd flite && ./configure
cd flite && make
cd flite && make install
# install lex_lookupcd flite/testsuite && make
cp flite/testsuite/lex_lookup /usr/local/bin
chmod 777 /usr/local/bin/lex_lookup
# test
lex_lookup tiktok
I'm trying to install lex_lookup on Cygwin but I keep getting an error message:
$ cd testsuite
$ make lex_lookup
make: *** No rule to make target 'lex_lookup'. Stop.
How can I get this to work?
The text was updated successfully, but these errors were encountered: