Remove prose from notebooks default package list (#13173)

This commit is contained in:
Chris LaFreniere
2020-11-02 10:54:32 -08:00
committed by GitHub
parent 7559d8463f
commit 04117b2333
4 changed files with 2 additions and 18 deletions

View File

@@ -60,7 +60,7 @@ describe('Notebook Extension Python Installation', function () {
console.log('Uninstalling existing pip dependencies');
let install = jupyterController.jupyterInstallation;
let pythonExe = JupyterServerInstallation.getPythonExePath(pythonInstallDir, false);
let command = `"${pythonExe}" -m pip uninstall -y jupyter pandas sparkmagic prose-codeaccelerator`;
let command = `"${pythonExe}" -m pip uninstall -y jupyter pandas sparkmagic`;
await executeStreamedCommand(command, { env: install.execOptions.env }, install.outputChannel);
console.log('Uninstalling existing pip dependencies is done');