ai-voice-cloning/start.sh

7 lines
125 B
Bash
Raw Normal View History

2023-02-18 02:46:44 +00:00
#!/bin/bash
2023-03-06 21:16:26 +00:00
if [ ! -d "venv" ]; then ./setup-guided.sh; fi
2023-02-17 00:08:27 +00:00
source ./venv/bin/activate
python3 ./src/main.py "$@"
2023-02-17 00:08:27 +00:00
deactivate