2023-02-19 21:41:51 +00:00
|
|
|
git submodule init
|
2023-02-23 07:05:39 +00:00
|
|
|
git submodule update --remote
|
2023-02-19 21:41:51 +00:00
|
|
|
|
2023-02-17 00:08:27 +00: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
|
2023-02-19 21:41:51 +00:00
|
|
|
python -m pip install -r .\dlas\requirements.txt
|
|
|
|
python -m pip install -r .\tortoise-tts\requirements.txt
|
|
|
|
python -m pip install -r .\requirements.txt
|
|
|
|
python -m pip install -e .\tortoise-tts\
|
2023-02-23 06:24:54 +00:00
|
|
|
|
2023-02-24 23:13:13 +00:00
|
|
|
xcopy .\dlas\bitsandbytes_windows\* .\venv\Lib\site-packages\bitsandbytes\. /Y
|
|
|
|
xcopy .\dlas\bitsandbytes_windows\cuda_setup\* .\venv\Lib\site-packages\bitsandbytes\cuda_setup\. /Y
|
|
|
|
xcopy .\dlas\bitsandbytes_windows\nn\* .\venv\Lib\site-packages\bitsandbytes\nn\. /Y
|
2023-02-23 06:24:54 +00:00
|
|
|
|
2023-02-17 00:08:27 +00:00
|
|
|
deactivate
|
|
|
|
pause
|