forked from mrq/ai-voice-cloning
22 lines
490 B
Batchfile
Executable File
22 lines
490 B
Batchfile
Executable File
git pull
|
|
python -m venv venv
|
|
call .\venv\Scripts\activate.bat
|
|
|
|
git clone https://git.ecker.tech/mrq/DL-Art-School dlas
|
|
cd dlas
|
|
git pull
|
|
cd ..
|
|
|
|
git clone https://git.ecker.tech/mrq/tortoise-tts
|
|
cd tortoise-tts
|
|
git pull
|
|
cd ..
|
|
|
|
python -m pip install --upgrade pip
|
|
python -m pip install -r .\dlas\requirements.txt
|
|
python -m pip install -r .\tortoise-tts\requirements.txt
|
|
python -m pip install -e .\tortoise-tts
|
|
python -m pip install -r .\requirements.txt
|
|
|
|
deactivate
|
|
pause |