Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/client/datascience/jupyter/jupyterCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class InterpreterJupyterCommand implements IJupyterCommand {
}
}
}
return pythonExecutionFactory.createActivatedEnvironment({ interpreter: this._interpreter });
return pythonExecutionFactory.createActivatedEnvironment({ interpreter: this._interpreter, bypassCondaExecution: true });
});
}
public interpreter(): Promise<PythonInterpreter | undefined> {
Expand Down
2 changes: 1 addition & 1 deletion src/client/datascience/jupyter/jupyterCommandFinder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export class JupyterCommandFinderImpl {
private async createExecutionService(interpreter: PythonInterpreter): Promise<IPythonExecutionService> {
const [currentInterpreter, pythonService] = await Promise.all([
this.interpreterService.getActiveInterpreter(undefined),
this.executionFactory.createActivatedEnvironment({ resource: undefined, interpreter, allowEnvironmentFetchExceptions: true })
this.executionFactory.createActivatedEnvironment({ resource: undefined, interpreter, allowEnvironmentFetchExceptions: true, bypassCondaExecution: true })
]);

// Use daemons for current interpreter, when using any other interpreter, do not use a daemon.
Expand Down