Update install.py

This commit is contained in:
2025-10-15 20:07:11 +00:00
parent afbc2ce626
commit b82b6c2790

View File

@@ -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"