Skip to content

Commit ee50275

Browse files
committed
inside conda
1 parent f94ef53 commit ee50275

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/client/common/process/pythonExecutionFactory.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,15 +158,20 @@ export class PythonExecutionFactory implements IPythonExecutionFactory {
158158
pythonPath: string,
159159
processService: IProcessService,
160160
): Promise<IPythonExecutionService | undefined> {
161+
console.log('EJFB, inside createCES');
161162
const condaLocatorService = this.serviceContainer.get<IComponentAdapter>(IComponentAdapter);
163+
console.log('EJFB, 5.1');
162164
const [condaEnvironment] = await Promise.all([condaLocatorService.getCondaEnvironment(pythonPath)]);
165+
console.log('EJFB, 5.2');
163166
if (!condaEnvironment) {
164167
return undefined;
165168
}
169+
console.log('EJFB,5.3');
166170
const env = await createCondaEnv(condaEnvironment, processService, this.fileSystem);
167171
if (!env) {
168172
return undefined;
169173
}
174+
console.log('EJFB, 5.4');
170175
return createPythonService(processService, env);
171176
}
172177

0 commit comments

Comments
 (0)