There was an error while loading. Please reload this page.
1 parent bb518bb commit 626cc87Copy full SHA for 626cc87
src/client/jupyter/kernel-manager.ts
@@ -214,8 +214,8 @@ export class KernelManagerImpl extends EventEmitter {
214
}
215
216
public getKernelSpecsFromJupyter(): Promise<any> {
217
- const jupyter = 'jupyterx kernelspec list --json --log-level=CRITICAL';
218
- const ipython = 'ipythonx kernelspec list --json --log-level=CRITICAL';
+ const jupyter = 'jupyter kernelspec list --json --log-level=CRITICAL';
+ const ipython = 'ipython kernelspec list --json --log-level=CRITICAL';
219
return this.getKernelSpecsFrom(jupyter).catch(jupyterError => {
220
return this.getKernelSpecsFrom(ipython);
221
});
0 commit comments