forked from mrq/ai-voice-cloning
7 lines
125 B
Bash
Executable File
7 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -d "venv" ]; then ./setup-guided.sh; fi
|
|
|
|
source ./venv/bin/activate
|
|
python3 ./src/main.py "$@"
|
|
deactivate
|