(home)
| 2390 | } |
| 2391 | |
| 2392 | function runtimePythonPath(home) { |
| 2393 | return process.platform === 'win32' |
| 2394 | ? path.join(runtimePythonEnvPath(home), 'Scripts', 'python.exe') |
| 2395 | : path.join(runtimePythonEnvPath(home), 'bin', 'python'); |
| 2396 | } |
| 2397 | |
| 2398 | function runtimeUvCachePath(home) { |
| 2399 | return path.join(home, 'runtime', 'uv-cache'); |
no test coverage detected