MCPcopy
hub / github.com/lightningpixel/modly / getVenvPythonExe

Function getVenvPythonExe

electron/main/python-setup.ts:70–75  ·  view source on GitHub ↗
(userData: string)

Source from the content-addressed store, hash-verified

68}
69
70export function getVenvPythonExe(userData: string): string {
71 const venvDir = getVenvDir(userData)
72 return process.platform === 'win32'
73 ? join(venvDir, 'Scripts', 'python.exe')
74 : join(venvDir, 'bin', 'python')
75}
76
77// ─── Setup state ──────────────────────────────────────────────────────────────
78

Callers 5

runExtensionSetupFunction · 0.90
setupIpcHandlersFunction · 0.90
checkSetupNeededFunction · 0.85
runFullSetupFunction · 0.85

Calls 1

getVenvDirFunction · 0.85

Tested by

no test coverage detected