File size: 417 Bytes
bf6d117
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# Script to download the XTTS-v2 model from Hugging Face
echo "Downloading XTTS-v2 model..."
huggingface-cli download coqui/XTTS-v2 --repo-type model --local-dir XTTS-v2

if [ $? -eq 0 ]; then
    echo "Successfully downloaded XTTS-v2 model to XTTS-v2 directory."
else
    echo "Error: Failed to download XTTS-v2 model. Please check your network connection or huggingface-cli installation."
    exit 1
fi