From 2d6f69da1cc7f83d9ccbf5cd1f2e0a7ae353a564 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Thu, 29 Aug 2019 18:07:05 -0700 Subject: [PATCH] no mathjax (#6995) --- extensions/notebook/src/jupyter/serverInstance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/notebook/src/jupyter/serverInstance.ts b/extensions/notebook/src/jupyter/serverInstance.ts index b58db7fef1..673f5aa79c 100644 --- a/extensions/notebook/src/jupyter/serverInstance.ts +++ b/extensions/notebook/src/jupyter/serverInstance.ts @@ -236,7 +236,7 @@ export class PerNotebookServerInstance implements IServerInstance { let token = await notebookUtils.getRandomToken(); this._uri = vscode.Uri.parse(`http://localhost:${port}/?token=${token}`); this._port = port.toString(); - let startCommand = `"${this.options.install.pythonExecutable}" -m jupyter notebook --no-browser --notebook-dir "${notebookDirectory}" --port=${port} --NotebookApp.token=${token}`; + let startCommand = `"${this.options.install.pythonExecutable}" -m jupyter notebook --no-browser --no-mathjax --notebook-dir "${notebookDirectory}" --port=${port} --NotebookApp.token=${token}`; this.notifyStarting(this.options.install, startCommand); // Execute the command