MCPcopy Create free account
hub / github.com/deepnote/vscode-deepnote / uninstallIPyKernel

Function uninstallIPyKernel

src/test/datascience/helpers.node.ts:7–11  ·  view source on GitHub ↗
(pythonExecPath: string)

Source from the content-addressed store, hash-verified

5export * from './helpers';
6
7export async function uninstallIPyKernel(pythonExecPath: string) {
8 // Uninstall ipykernel from the virtual env.
9 const proc = new ProcessService();
10 await proc.exec(pythonExecPath, ['-m', 'pip', 'uninstall', 'ipykernel', '--yes']);
11}
12export async function installIPyKernel(pythonExecPath: string) {
13 // Uninstall ipykernel from the virtual env.
14 const proc = new ProcessService();

Callers 2

postSwitchFunction · 0.90

Calls 1

execMethod · 0.95

Tested by 1

postSwitchFunction · 0.72