From e6abb4bf68928033818ad79715ee52379bfcc36c Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Thu, 24 Oct 2024 21:03:09 -0700 Subject: [PATCH] Fix missing python interpreter path. --- src/main.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/main.ts b/src/main.ts index 96b3112b..ef06d6ef 100644 --- a/src/main.ts +++ b/src/main.ts @@ -202,15 +202,7 @@ if (!gotTheLock) { await pythonEnvironment.setup(); sendProgressUpdate('Starting Comfy Server...'); - await launchPythonServer(pythonInterpreterPath, appResourcesPath, modelConfigPath, basePath); - updateElectronApp({ - updateSource: { - type: UpdateSourceType.StaticStorage, - baseUrl: `https://updater.comfy.org/${process.platform}/${process.arch}`, - }, - logger: log, - updateInterval: '2 hours', - }); + await launchPythonServer(pythonEnvironment.pythonInterpreterPath, appResourcesPath, modelConfigPath, basePath); } catch (error) { log.error(error); sendProgressUpdate(COMFY_ERROR_MESSAGE);