Skip to content

Commit 78c8f06

Browse files
authored
Ensure dependencies are installed when creating venv (#16708)
1 parent cdafd39 commit 78c8f06

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jupyter",
33
"displayName": "Jupyter",
4-
"version": "2025.6.0",
4+
"version": "2025.5.0",
55
"description": "Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.",
66
"publisher": "ms-toolsai",
77
"author": {

src/standalone/chat/createVirtualEnv.python.node.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,13 @@ export async function createVirtualEnvAndSelectAsKernel(
9797
await kernelDependencyService.installMissingDependencies({
9898
resource: notebook.uri,
9999
kernelConnection: selectedController.connection,
100-
ui: new DisplayOptions(true),
100+
ui: new DisplayOptions(false),
101101
token,
102102
ignoreCache: true,
103103
installWithoutPrompting: true
104104
});
105+
106+
await selectKernelAndStart(notebook, preferredController, controllerRegistration, token, true);
105107
}
106108

107109
return true;

0 commit comments

Comments
 (0)