From b82b6c27902c403565e9404b67f7097748296905 Mon Sep 17 00:00:00 2001 From: jonathan Date: Wed, 15 Oct 2025 20:07:11 +0000 Subject: [PATCH] Update install.py --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 3c78ac1..ff8aa92 100644 --- a/install.py +++ b/install.py @@ -6,7 +6,7 @@ is_macos = False is_windows = False def check_os(): - os_type = platform.uname().sysname.lower() + os_type = platform.uname().system.lower() is_linux = os_type == "linux" is_macos = os_type == "darwin"