forked from blaisewf/rvc-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.bat
67 lines (55 loc) · 2.35 KB
/
install.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@echo off
set "principal=%cd%"
set "URL_EXTRA=https://huggingface.co/IAHispano/applio/resolve/main"
set "CONDA_ROOT_PREFIX=%UserProfile%\Miniconda3"
set "INSTALL_ENV_DIR=%principal%\env"
set "MINICONDA_DOWNLOAD_URL=https://repo.anaconda.com/miniconda/Miniconda3-py39_23.9.0-0-Windows-x86_64.exe"
set "CONDA_EXECUTABLE=%CONDA_ROOT_PREFIX%\Scripts\conda.exe"
if not exist "%cd%\env.zip" (
echo Downloading the fairseq build...
curl -s -LJO %URL_EXTRA%/env.zip -o env.zip
)
if not exist "%cd%\env.zip" (
echo Download failed, trying with the powershell method
powershell -Command "& {Invoke-WebRequest -Uri '%URL_EXTRA%/env.zip' -OutFile 'mingit.zip'}"
)
if not exist "%cd%\env" (
echo Extracting the file...
powershell -command "& { Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory('%cd%\env.zip', '%cd%') }"
)
if not exist "%cd%\env" (
echo Extracting failed trying with the tar method...
tar -xf %cd%\env.zip
)
if exist "%cd%\env" (
del env.zip
) else (
echo Theres a problem extracting the file please download the file and extract it manually.
echo https://huggingface.co/IAHispano/applio/resolve/main/env.zip
pause
exit
)
if not exist "%CONDA_EXECUTABLE%" (
echo Downloading Miniconda from %MINICONDA_DOWNLOAD_URL%...
curl %MINICONDA_DOWNLOAD_URL% -o miniconda.exe
if not exist "%principal%\miniconda.exe" (
echo Download failed trying with the powershell method.
powershell -Command "& {Invoke-WebRequest -Uri '%MINICONDA_DOWNLOAD_URL%' -OutFile 'miniconda.exe'}"
)
echo Installing Miniconda to %CONDA_ROOT_PREFIX%...
start /wait "" miniconda.exe /InstallationType=JustMe /RegisterPython=0 /S /D=%CONDA_ROOT_PREFIX%
del miniconda.exe
)
call "%CONDA_ROOT_PREFIX%\_conda.exe" create --no-shortcuts -y -k --prefix "%INSTALL_ENV_DIR%" python=3.9
echo Installing the dependencies...
call "%CONDA_ROOT_PREFIX%\condabin\conda.bat" activate "%INSTALL_ENV_DIR%"
pip install --upgrade setuptools
pip install -r "%principal%\requirements.txt"
pip install future==0.18.2
pip uninstall torch torchvision torchaudio -y
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/cu121
call "%CONDA_ROOT_PREFIX%\condabin\conda.bat" deactivate
echo.
echo RVC_CLI has been installed successfully!
pause
cls