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.
94 lines
2.3 KiB
94 lines
2.3 KiB
#! /usr/bin/env bash
|
|
|
|
source utils/log.sh
|
|
|
|
|
|
SUDO='sudo'
|
|
if [ $(id -u) -eq 0 ]; then
|
|
SUDO=''
|
|
fi
|
|
|
|
if [ -e /etc/lsb-release ];then
|
|
${SUDO} apt-get update -y
|
|
${SUDO} apt-get install -y jq vim tig tree sox pkg-config libflac-dev libogg-dev libvorbis-dev libboost-dev swig python3-dev
|
|
if [ $? != 0 ]; then
|
|
error_msg "Please using Ubuntu or install pkg-config libflac-dev libogg-dev libvorbis-dev libboost-dev swig python3-dev by user."
|
|
exit -1
|
|
fi
|
|
fi
|
|
|
|
|
|
# tools/make
|
|
rm tools/*.done
|
|
pushd tools && make && popd
|
|
|
|
source tools/venv/bin/activate
|
|
|
|
# install python dependencies
|
|
if [ -f "requirements.txt" ]; then
|
|
pip3 install -r requirements.txt
|
|
fi
|
|
if [ $? != 0 ]; then
|
|
error_msg "Install python dependencies failed !!!"
|
|
exit 1
|
|
fi
|
|
|
|
# install package libsndfile
|
|
python3 -c "import soundfile"
|
|
if [ $? != 0 ]; then
|
|
info_msg "Install package libsndfile into default system path."
|
|
wget "http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28.tar.gz"
|
|
if [ $? != 0 ]; then
|
|
error_msg "Download libsndfile-1.0.28.tar.gz failed !!!"
|
|
exit 1
|
|
fi
|
|
tar -zxvf libsndfile-1.0.28.tar.gz
|
|
cd libsndfile-1.0.28
|
|
./configure > /dev/null && make > /dev/null && make install > /dev/null
|
|
cd ..
|
|
rm -rf libsndfile-1.0.28
|
|
rm libsndfile-1.0.28.tar.gz
|
|
fi
|
|
|
|
#install auto-log
|
|
python -c "import auto_log"
|
|
if [ $? != 0 ]; then
|
|
info_msg "Install auto_log into default system path"
|
|
test -d AutoLog || git clone https://github.com/LDOUBLEV/AutoLog
|
|
if [ $? != 0 ]; then
|
|
error_msg "Download auto_log failed !!!"
|
|
exit 1
|
|
fi
|
|
cd AutoLog
|
|
pip install -r requirements.txt
|
|
python setup.py install
|
|
cd ..
|
|
rm -rf AutoLog
|
|
fi
|
|
|
|
# install decoders
|
|
python3 -c "import pkg_resources; pkg_resources.require(\"swig_decoders==1.1\")"
|
|
if [ $? != 0 ]; then
|
|
cd deepspeech/decoders/swig > /dev/null
|
|
sh setup.sh
|
|
cd - > /dev/null
|
|
fi
|
|
python3 -c "import pkg_resources; pkg_resources.require(\"swig_decoders==1.1\")"
|
|
if [ $? != 0 ]; then
|
|
error_msg "Please check why decoder install error!"
|
|
exit -1
|
|
fi
|
|
|
|
|
|
# install third_party
|
|
pushd third_party
|
|
bash install.sh
|
|
if [ $? != 0 ]; then
|
|
error_msg "Please check why third_party install error!"
|
|
exit -1
|
|
fi
|
|
popd
|
|
|
|
|
|
info_msg "Install all dependencies successfully."
|