setup.sh 445 字节
Newer Older
H
huangyuxin 已提交
1
# Install conda dependencies
H
huangyuxin 已提交
2
conda install -c conda-forge sox libsndfile swig bzip2 bottleneck gcc_linux-64=8.4.0 gxx_linux-64=8.4.0 --yes
H
huangyuxin 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

# Install the python lib
pip install -r requirements.txt

# Install the auto_log
pushd tools/extras
bash install_autolog.sh
popd

# Install the ctcdecoder
pushd paddlespeech/s2t/decoders/ctcdecoder/swig
bash -e setup.sh
popd

# Install the python_speech_features
pushd third_party
bash -e install.sh
popd