File size: 153 Bytes
c39db41 |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
# Create a Python virtual environment
python -m venv venv
# Activate the virtual environment
source venv/bin/activate
python xtts_demo.py
|
c39db41 |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
# Create a Python virtual environment
python -m venv venv
# Activate the virtual environment
source venv/bin/activate
python xtts_demo.py
|