()
| 28 | let bootstrapPromise: Promise<void> | undefined |
| 29 | |
| 30 | function getPythonCommandEnv(): NodeJS.ProcessEnv | undefined { |
| 31 | if (!isWindows) return undefined |
| 32 | return { |
| 33 | ...process.env, |
| 34 | PYTHONIOENCODING: 'utf-8', |
| 35 | PYTHONUTF8: '1', |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | function pythonBinPath(): string { |
| 40 | return isWindows |