Skip to content

Commit 9735de2

Browse files
authored
Update Setup_2.ps1
Fixed to latest OV repos
1 parent 72ecfe8 commit 9735de2

File tree

1 file changed

+5
-6
lines changed
  • Windows_Software_Installation/WingetGUI_Installer

1 file changed

+5
-6
lines changed

Windows_Software_Installation/WingetGUI_Installer/Setup_2.ps1

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ $runspacePool.Open()
266266
$jobs = @()
267267

268268
# Define Repos
269-
$repos = @(
270-
@{ Name = "openvino_notebooks"; Uri = "https://github.com/openvinotoolkit/openvino_notebooks/archive/refs/heads/2025.3.zip"; File = "2025.3.zip" },
269+
$repos = @(
270+
@{ Name = "openvino_notebooks"; Uri = "https://github.com/openvinotoolkit/openvino_notebooks/archive/refs/heads/latest.zip"; File = "openvino_notebooks-latest.zip" },
271271
@{ Name = "openvino_build_deploy"; Uri = "https://github.com/openvinotoolkit/openvino_build_deploy/archive/refs/heads/master.zip"; File = "master-build_deploy.zip" },
272272
@{ Name = "ollama-ipex-llm"; Uri = "https://github.com/ipex-llm/ipex-llm/releases/download/v2.3.0-nightly/ollama-ipex-llm-2.3.0b20250725-win.zip"; File = "ollama-ipex-llm.zip" },
273273
@{ Name = "openvino_genai"; Uri = "https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/2025.3/windows/openvino_genai_windows_2025.3.0.0_x86_64.zip"; File = "openvino_genai.zip" },
@@ -426,9 +426,8 @@ foreach ($result in $downloadResults) {
426426

427427
switch ($name) {
428428
"openvino_notebooks" {
429-
# FIXED: Updated from 2025.2 to 2025.3
430-
if (Test-Path "openvino_notebooks-2025.3") {
431-
Rename-Item "openvino_notebooks-2025.3" $name
429+
if (Test-Path "openvino_notebooks-latest") {
430+
Rename-Item "openvino_notebooks-latest" $name
432431
}
433432
}
434433
"openvino_build_deploy" {
@@ -829,7 +828,7 @@ if (Test-Path "open_model_zoo") {
829828

830829
# Clean up any remaining zip files - UPDATED ZIP FILE NAMES
831830
Write-Host "`nCleaning up downloaded zip files..." -ForegroundColor Cyan
832-
$zipFiles = @("2025.3.zip", "master-build_deploy.zip", "ollama-ipex-llm.zip", "openvino_genai.zip", "ai-pc-samples.zip", "2024.4.0.zip")
831+
$zipFiles = @("openvino_notebooks-latest.zip", "master-build_deploy.zip", "ollama-ipex-llm.zip", "openvino_genai.zip", "ai-pc-samples.zip", "2024.4.0.zip")
833832
foreach ($zipFile in $zipFiles) {
834833
if (Test-Path $zipFile) {
835834
Remove-Item $zipFile -Force

0 commit comments

Comments
 (0)