File size: 326 Bytes
cde3c46
 
 
 
 
 
 
 
49bc30e
cde3c46
 
 
 
7d4762b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
if [ -d "SuTTS" ]; then
  echo "SuTTS already exists"
  cd SuTTS
  git pull --recurse-submodules
  git submodule update --recursive
  git submodule sync
else
  git clone https://github.com/SuCicada/SuTTS.git --recurse-submodules
  cd SuTTS
fi

make download-model-so_vits_svc
make install_requirements conda=false