You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PaddleSpeech/tools/extras/install_autolog.sh

18 lines
350 B

#!/bin/bash
#install auto-log
echo "Install auto_log into default system path"
rm -rf AutoLog || true
test -d AutoLog || git clone https://github.com/LDOUBLEV/AutoLog
if [ $? != 0 ]; then
error_msg "Download auto_log failed !!!"
exit 1
fi
pushd AutoLog
pip3 install -r requirements.txt
python3 setup.py install
popd
rm -rf AutoLog || true