Spaces:
Running
on
Zero
Running
on
Zero
# 安装 Python 3.8 | |
sudo apt install -y python3.8 | |
# 设置 Python 3.8 为默认的 Python 3 版本 | |
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1 | |
sudo update-alternatives --config python3 | |
# 验证 Python 版本 | |
python3 --version | |
# 升级 pip | |
python3 -m pip install --upgrade pip | |
# 验证 pip 版本 | |
pip --version | |
# pynini is required by WeTextProcessing, use conda to install it as it can be executed on all platform. | |
pip install pynini==2.1.5 | |
pip install -r requirements.txt | |
# If you encounter sox compatibility issues | |
# ubuntu | |
sudo apt-get install sox libsox-dev | |
mkdir -p pretrained_models | |
huggingface-cli download model-scope/CosyVoice-300M --local-dir pretrained_models/CosyVoice-300M --token=$hf_token | |
huggingface-cli download model-scope/CosyVoice-300M-SFT --local-dir pretrained_models/CosyVoice-300M-SFT --token=$hf_token | |
huggingface-cli download FunAudioLLM/CosyVoice-ttsfrd --local-dir pretrained_models/CosyVoice-ttsfrd --token=$hf_token | |
ls pretrained_models | |
cd pretrained_models/CosyVoice-ttsfrd/ | |
unzip resource.zip -d . | |
pip install ttsfrd-0.3.6-cp38-cp38-linux_x86_64.whl | |
export PYTHONPATH=third_party/Matcha-TTS |