(command: string)
| 133 | } |
| 134 | |
| 135 | async runCommand(command: string) { |
| 136 | const { stdout, stderr } = await execAsync(command); |
| 137 | console.log('stdout:', stdout); |
| 138 | console.log('stderr:', stderr); |
| 139 | } |
| 140 | |
| 141 | async runPythonScript(scriptPath: string, mainWindow: BrowserWindow) { |
| 142 | const pythonPath = this.SurferPythonPath; |