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
|
2023-02-26 17:46:57 +00:00
|
|
|
python -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117
|
2023-03-06 16:43:17 +00:00
|
|
|
python -m pip install -r .\requirements.txt
|
2023-03-10 03:53:21 +00:00
|
|
|
python -m pip install --force-reinstall -r .\modules\tortoise-tts\requirements.txt
|
|
|
|
python -m pip install --force-reinstall -e .\modules\tortoise-tts\
|
|
|
|
python -m pip install --force-reinstall -r .\modules\dlas\requirements.txt
|
2023-02-23 06:24:54 +00:00
|
|
|
|
2023-03-09 04:03:57 +00:00
|
|
|
xcopy .\modules\dlas\bitsandbytes_windows\* .\venv\Lib\site-packages\bitsandbytes\. /Y
|
|
|
|
xcopy .\modules\dlas\bitsandbytes_windows\cuda_setup\* .\venv\Lib\site-packages\bitsandbytes\cuda_setup\. /Y
|
|
|
|
xcopy .\modules\dlas\bitsandbytes_windows\nn\* .\venv\Lib\site-packages\bitsandbytes\nn\. /Y
|
|
|
|
|
|
|
|
del *.sh
|
2023-02-23 06:24:54 +00:00
|
|
|
|
2023-03-02 01:35:12 +00:00
|
|
|
pause
|
|
|
|
deactivate
|