parent
bf676c0a94
commit
98253954cb
@ -0,0 +1,38 @@
|
||||
#!/bin/bash
|
||||
|
||||
# install kaldi-comptiable feature
|
||||
pushd python_kaldi_features
|
||||
python3 setup.py install
|
||||
if [ $? != 0 ]; then
|
||||
error_msg "Please check why kaldi feature install error!"
|
||||
exit -1
|
||||
fi
|
||||
popd
|
||||
|
||||
# install zhon
|
||||
pushd zhon
|
||||
python3 setup.py install
|
||||
if [ $? != 0 ]; then
|
||||
error_msg "Please check why zhon install error!"
|
||||
exit -1
|
||||
fi
|
||||
popd
|
||||
|
||||
# install pypinyin
|
||||
pushd python-pinyin
|
||||
python3 setup.py install
|
||||
if [ $? != 0 ]; then
|
||||
error_msg "Please check why pypinyin install error!"
|
||||
exit -1
|
||||
fi
|
||||
popd
|
||||
|
||||
# install mmseg
|
||||
pushd pymmseg-cpp/
|
||||
python3 setup.py install
|
||||
if [ $? != 0 ]; then
|
||||
error_msg "Please check why pymmseg install error!"
|
||||
exit -1
|
||||
fi
|
||||
popd
|
||||
|
@ -0,0 +1,3 @@
|
||||
build
|
||||
dist
|
||||
*egg-info
|
Loading…
Reference in new issue