1
0
Fork 0
ai-voice-cloning-fork/setup-directml.bat

19 lines
545 B
Batchfile

2023-02-19 21:41:51 +07:00
git submodule init
git submodule update --remote
2023-02-19 21:41:51 +07:00
2023-02-17 00:08:27 +07:00
python -m venv venv
call .\venv\Scripts\activate.bat
python -m pip install --upgrade pip
python -m pip install torch torchvision torchaudio torch-directml
python -m pip install -r .\requirements.txt
python -m pip install -r .\modules\tortoise-tts\requirements.txt
python -m pip install -e .\modules\tortoise-tts\
python -m pip install -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
del *.sh
pause
deactivate