From 5b7b1122cbf600cf11eb5f594de04eae63fec42d Mon Sep 17 00:00:00 2001 From: Eugene Brodsky Date: Thu, 1 Feb 2024 19:45:46 -0500 Subject: [PATCH] tidy(installer): clean up unused code --- installer/lib/installer.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/installer/lib/installer.py b/installer/lib/installer.py index 9027019b6c..525e5f894a 100644 --- a/installer/lib/installer.py +++ b/installer/lib/installer.py @@ -28,25 +28,11 @@ class Installer: def __init__(self) -> None: self.reqs = INSTALLER_REQS - self.preflight() if os.getenv("VIRTUAL_ENV") is not None: print("A virtual environment is already activated. Please 'deactivate' before installation.") sys.exit(-1) self.bootstrap() - def preflight(self) -> None: - """ - Preflight checks - """ - - # TODO - # verify python version - # on macOS verify XCode tools are present - # verify libmesa, libglx on linux - # check that the system arch is not i386 (?) - # check that the system has a GPU, and the type of GPU - - pass def mktemp_venv(self) -> TemporaryDirectory: """