From 310a841b14c2e85258542c2bdbc4368cb8281254 Mon Sep 17 00:00:00 2001 From: llama Date: Sat, 1 Nov 2025 22:19:15 +0800 Subject: [PATCH] add libpython_path --- qt/launcher/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qt/launcher/src/main.rs b/qt/launcher/src/main.rs index dab9435ea..9c1c4abb2 100644 --- a/qt/launcher/src/main.rs +++ b/qt/launcher/src/main.rs @@ -53,6 +53,7 @@ struct State { previous_version: Option, resources_dir: std::path::PathBuf, venv_folder: std::path::PathBuf, + libpython_path: std::path::PathBuf, /// system Python + PyQt6 library mode system_qt: bool, } @@ -132,6 +133,7 @@ fn run() -> Result<()> { && resources_dir.join("system_qt").exists(), resources_dir, venv_folder: uv_install_root.join(".venv"), + libpython_path: uv_install_root.join("libpath"), }; // Check for uninstall request from Windows uninstaller