MCPcopy Create free account
hub / github.com/ResearAI/DeepScientist / resolvePythonRuntimePlan

Function resolvePythonRuntimePlan

bin/ds.js:2381–2386  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2379}
2380
2381function resolvePythonRuntimePlan() {
2382 const seenExecutables = new Set();
2383 const condaProbes = collectPythonProbes(buildCondaPythonCandidates(), 'conda', seenExecutables);
2384 const pathProbes = collectPythonProbes(pythonCandidates, 'path', seenExecutables);
2385 return createPythonRuntimePlan({ condaProbes, pathProbes, minimumVersionRequest: minimumPythonRequest() });
2386}
2387
2388function runtimePythonEnvPath(home) {
2389 return path.join(home, 'runtime', 'python-env');

Callers 1

ensurePythonRuntimeFunction · 0.85

Calls 4

collectPythonProbesFunction · 0.85
createPythonRuntimePlanFunction · 0.85
minimumPythonRequestFunction · 0.85

Tested by

no test coverage detected