This commit is contained in:
adator
2024-09-01 13:47:18 +02:00
parent 3d79270ca0
commit 489e1e7b0a

View File

@@ -30,15 +30,16 @@ class Install:
self.set_configuration() self.set_configuration()
if self.skip_install:
return None
self.Logs.debug(f'Configuration loaded : {self.config}')
if not self.check_python_version(): if not self.check_python_version():
# Tester si c'est la bonne version de python # Tester si c'est la bonne version de python
exit("Python Version Error") exit("Python Version Error")
else: else:
if self.skip_install:
return None
self.Logs.debug(f'Configuration loaded : {self.config}')
# Sinon tester les dependances python et les installer avec pip # Sinon tester les dependances python et les installer avec pip
if self.do_install(): if self.do_install():