basit-text-to-spech / install_espeak_ng.sh
basit123796's picture
Upload 25 files
901d6f7 verified
raw
history blame contribute delete
237 Bytes
(
rm -rf espeak
mkdir -p espeak
cd espeak
wget https://github.com/espeak-ng/espeak-ng/archive/refs/tags/1.51.zip
unzip -qq 1.51.zip
cd espeak-ng-1.51
./autogen.sh
./configure --prefix=`pwd`/../usr
make
make install
)