()
| 55 | } |
| 56 | |
| 57 | export function getEmbeddedPythonExe(): string { |
| 58 | const dir = getEmbeddedPythonDir() |
| 59 | return process.platform === 'win32' ? join(dir, 'python.exe') : join(dir, 'bin', 'python3') |
| 60 | } |
| 61 | |
| 62 | /** Venv lives inside dependenciesDir on Windows (user-configurable drive), userData on Linux. */ |
| 63 | export function getVenvDir(userData: string): string { |
no test coverage detected