diff --git a/src/client/datascience/jupyter/notebookStarter.ts b/src/client/datascience/jupyter/notebookStarter.ts index b0a0ae2173e6..6656496003c1 100644 --- a/src/client/datascience/jupyter/notebookStarter.ts +++ b/src/client/datascience/jupyter/notebookStarter.ts @@ -241,7 +241,7 @@ export class NotebookStarter implements Disposable { const isActiveInterpreter = activeInterpreter ? activeInterpreter.path === interpreter.path : false; const daemon = await (isActiveInterpreter ? this.executionFactory.createDaemon({ daemonModule: PythonDaemonModule, pythonPath: interpreter.path }) - : this.executionFactory.createActivatedEnvironment({ allowEnvironmentFetchExceptions: true, interpreter })); + : this.executionFactory.createActivatedEnvironment({ allowEnvironmentFetchExceptions: true, interpreter, bypassCondaExecution: true })); // We have a small python file here that we will execute to get the server info from all running Jupyter instances const newOptions: SpawnOptions = { mergeStdOutErr: true, token: cancelToken }; const file = path.join(EXTENSION_ROOT_DIR, 'pythonFiles', 'datascience', 'getServerInfo.py');