mirror of
https://git.ecker.tech/mrq/ai-voice-cloning
synced 2025-06-07 11:05:42 -04:00
18 lines
No EOL
458 B
Bash
Executable file
18 lines
No EOL
458 B
Bash
Executable file
#!/bin/bash
|
|
git fetch --all
|
|
git reset --hard origin/master
|
|
|
|
./update.sh
|
|
|
|
# force install requirements
|
|
python3 -m venv venv
|
|
source ./venv/bin/activate
|
|
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install -r ./modules/tortoise-tts/requirements.txt
|
|
python3 -m pip install -e ./modules/tortoise-tts
|
|
python3 -m pip install -r ./modules/dlas/requirements.txt
|
|
python3 -m pip install -e ./modules/dlas
|
|
python3 -m pip install -r ./requirements.txt
|
|
|
|
deactivate |