|
chcp 65001 > NUL |
|
@echo off |
|
|
|
pushd %~dp0 |
|
set PS_CMD=PowerShell -Version 5.1 -ExecutionPolicy Bypass |
|
|
|
set CURL_CMD=C:\Windows\System32\curl.exe |
|
if not exist %CURL_CMD% ( |
|
echo [ERROR] %CURL_CMD% が見つかりません。 |
|
pause & popd & exit /b 1 |
|
) |
|
|
|
|
|
%CURL_CMD% -Lo Style-Bert-VITS2.zip^ |
|
https://github.com/litagin02/Style-Bert-VITS2/archive/refs/heads/master.zip |
|
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% ) |
|
|
|
|
|
%PS_CMD% Expand-Archive -Path Style-Bert-VITS2.zip -DestinationPath . -Force |
|
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% ) |
|
|
|
|
|
del Style-Bert-VITS2.zip |
|
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% ) |
|
|
|
|
|
xcopy /QSY .\Style-Bert-VITS2-master\ .\Style-Bert-VITS2\ |
|
rmdir /s /q Style-Bert-VITS2-master |
|
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% ) |
|
|
|
|
|
|
|
echo call .\Style-Bert-VITS2\scripts\activate.bat |
|
call .\Style-Bert-VITS2\venv\Scripts\activate.bat |
|
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% ) |
|
|
|
pip install -U -r Style-Bert-VITS2\requirements.txt |
|
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% ) |
|
|
|
echo Style-Bert-VITS2のアップデートが完了しました。 |
|
|
|
pause |
|
|
|
popd |