From b112b09e82696ff66aadcca387da67a76742961f Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Fri, 24 Jan 2025 08:24:32 +0100 Subject: [PATCH] update launch scripts to use uv --- launch.cmd | 2 +- launch.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/launch.cmd b/launch.cmd index e5a90e3..0404112 100644 --- a/launch.cmd +++ b/launch.cmd @@ -18,7 +18,7 @@ if exist .venv ( ) REM Start main.py -python main.py +uv run python main.py REM Deactivate the virtual environment if it was activated if exist .venv ( diff --git a/launch.ps1 b/launch.ps1 index 6ad66ab..ead4a15 100644 --- a/launch.ps1 +++ b/launch.ps1 @@ -17,7 +17,7 @@ if (Test-Path .venv) { } # Start main.py -python main.py +uv run python main.py # Deactivate the virtual environment if it was activated if (Test-Path .venv) {