-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·23 lines (16 loc) · 866 Bytes
/
setup.sh
File metadata and controls
executable file
·23 lines (16 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
conda create -n belle python=3.10
source ~/miniconda3/bin/activate belle
pip install -r requirements.txt
apt-get install -y espeak-ng
# k2
# find the right version in https://huggingface.co/csukuangfj/k2
# The cuda version in your system can be higher than the cuda version used to compile k2, but not lower.
wget https://huggingface.co/csukuangfj/k2/tree/main/ubuntu-cuda/k2-1.24.4.dev20250807%2Bcuda12.8.torch2.8.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
pip install k2-1.24.4.dev20250807%2Bcuda12.8.torch2.8.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
git clone https://github.com/k2-fsa/icefall
pip install -r icefall/requirements.txt
pip install -e .
pip install -r evaluate-zero-shot-tts/requirements_evaluation.txt
pip install -e belle/ParallelWaveGAN
pip install scipy==1.10
pip install "nemo_toolkit[asr]==2.5.0"