diff --git a/vanilla_installer/core/system.py b/vanilla_installer/core/system.py index e0c8c75e..d57bf87a 100644 --- a/vanilla_installer/core/system.py +++ b/vanilla_installer/core/system.py @@ -34,6 +34,6 @@ def is_cpu_enough() -> bool: proc2 = subprocess.Popen("lscpu | egrep 'Socket\(s\)' | awk '{print $2}'", shell=True, stdout=subprocess.PIPE).stdout\ .read().decode() - Systeminfo.cpu = (int(proc1) * int(proc2)) > 2 + Systeminfo.cpu = (int(proc1) * int(proc2)) >= 2 return Systeminfo.cpu