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

8 lines
285 B
Batchfile

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 --extra-index-url https://download.pytorch.org/whl/cu116
python -m pip install -r ./requirements.txt
.\setup-training.bat
2023-02-17 00:08:27 +07:00
deactivate
pause