1
0
Fork 0
ai-voice-cloning-fork/update-force.bat

17 lines
495 B
Batchfile

2023-02-17 00:08:27 +07:00
git fetch --all
2023-02-18 02:46:44 +07:00
git reset --hard origin/master
call .\update.bat
python -m venv venv
call .\venv\Scripts\activate.bat
python -m pip install --upgrade pip
2023-03-06 16:47:34 +07:00
python -m pip install -U -r .\requirements.txt
python -m pip install -U -r .\modules\tortoise-tts\requirements.txt
python -m pip install -U -e .\modules\tortoise-tts
python -m pip install -U -r .\modules\dlas\requirements.txt
2023-03-10 04:27:34 +07:00
python -m pip install -U einops==0.6.0
python -m pip install -U librosa==0.8.1
pause
deactivate