-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinstall.bat
71 lines (59 loc) · 2.86 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
68
69
70
71
:: Installation script :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Multi-mode LLM
::
:: This script is only called from ..\..\CodeProject.AI-Server\src\setup.bat in
:: Dev setup, or ..\..\src\setup.bat in production
::
:: For help with install scripts, notes on variables and methods available, tips,
:: and explanations, see /src/modules/install_script_help.md
@if "%1" NEQ "install" (
echo This script is only called from ..\..\src\setup.bat
@pause
@goto:eof
)
set oneStepPIP=false
set useCUDA=false
if "!cuda_major_version!" == "12" set useCUDA=true
if "!cuda_version!" == "11.8" set useCUDA=true
if "!useCUDA!" == "true" (
call "!utilsScript!" Write "Checking for the CUDA Toolkit..."
if "!hasCUDAToolkit!" == "false" (
call "!utilsScript!" WriteLine
call "!utilsScript!" WriteLine "** WARNING: This module requires the CUDA Toolkit to be installed." !color_error!
call "!utilsScript!" WriteLine " The toolkit can be downloaded and installed from NVIDIA:" !color_error!
call "!utilsScript!" WriteLine " https://developer.nvidia.com/cuda-downloads?target_os=Windows " !color_error!
call "!utilsScript!" WriteLine
set useCUDA=false
) else (
call "!utilsScript!" WriteLine "All good" !color_success!
)
)
if "!useCUDA!" == "true" (
call "!utilsScript!" WriteLine "Confirming VC++ Redist package installation"
set "RequiredVCRedistVersion=14.40.33810.00"
call "!utilsScript!" GetVCredistVersion "64-bit"
call :compareVersions "!VCredistVersion!" "!RequiredVCRedistVersion!"
if !compareResult! LSS 0 (
set moduleInstallErrors=VC++ redist !RequiredVCRedistVersion! is not installed. Please download and install from https://aka.ms/vs/17/release/vc_redist.x64.exe
)
set "phi3_folder=cuda-int4-rtn-block-32"
set "phi3_fileId=microsoft/Phi-3-vision-128k-instruct-onnx-cuda"
) else (
set "phi3_fileId=microsoft/Phi-3-vision-128k-instruct-onnx-cpu"
set "phi3_folder=cpu-int4-rtn-block-32-acc-level-4"
)
REM Ensure Git LFS is installed
git lfs --version >nul 2>&1
if errorlevel 1 winget install -e --id GitHub.GitLFS
set HF_HUB_DISABLE_SYMLINKS_WARNING=1
rem call "!utilsScript!" Write "Looking for model !phi3_fileId! in !moduleDirPath!\!phi3_folder!..."
call "!utilsScript!" Write "Looking for model !phi3_fileId! in .\!phi3_folder!..."
if exist "!moduleDirPath!\!phi3_folder!" (
call "!utilsScript!" WriteLine "Already downloaded." "!color_success!"
) else (
call "!utilsScript!" Write "downloading..."
call "!utilsScript!" InstallPythonPackagesByName "huggingface-hub[cli]"
!venvPythonCmdPath! !packagesDirPath!\huggingface_hub\commands\huggingface_cli.py download !phi3_fileId! --include !phi3_folder!\* --local-dir "!moduleDirPath!"
call "!utilsScript!" WriteLine "Done." "!color_success!"
)