Professor-AI-Feynman / download.sh
Jaward's picture
Create download.sh
bf6d117 verified
raw
history blame
417 Bytes
#!/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