File size: 343 Bytes
c39db41 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Create a Python virtual environment
python -m venv venv
# Activate the virtual environment
source venv/bin/activate
# Install other dependencies from requirements.txt
pip install -r requirements.txt
pip install torch==2.1.1+cu118 torchaudio==2.1.1+cu118 --index-url https://download.pytorch.org/whl/cu118
python xtts_demo.py
|