Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install/CPU/windows_cpu.bat
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if "!PYTHON_EXE!"=="" (
)

echo Using Python: !PYTHON_EXE!
!PYTHON_EXE! --version
"!PYTHON_EXE!" --version

:: Install uv if not already installed
where uv >nul 2>&1
Expand All @@ -75,7 +75,7 @@ echo uv is ready
uv --version

echo Syncing dependencies with uv...
uv sync --extra windows --python !PYTHON_EXE!
uv sync --extra windows --python "!PYTHON_EXE!"
if !errorlevel! neq 0 (
echo Error during uv sync
pause
Expand Down
4 changes: 2 additions & 2 deletions install/CUDA/windows_cuda_gpu.bat
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if "!PYTHON_EXE!"=="" (
)

echo Using Python: !PYTHON_EXE!
!PYTHON_EXE! --version
"!PYTHON_EXE!" --version

:: Install uv if not already installed
where uv >nul 2>&1
Expand All @@ -75,7 +75,7 @@ echo uv is ready
uv --version

echo Syncing dependencies with uv...
uv sync --extra windows --python !PYTHON_EXE!
uv sync --extra windows --python "!PYTHON_EXE!"
if !errorlevel! neq 0 (
echo Error during uv sync
pause
Expand Down
Loading