filter out prose-accelerator (#15633)

This commit is contained in:
Lucy Zhang
2021-06-08 14:48:57 -04:00
committed by GitHub
parent d8b693341e
commit d6d2e7dc08

View File

@@ -862,6 +862,8 @@ export class JupyterServerInstallation implements IJupyterServerInstallation {
private async createInstallPipPackagesHelpNotebook(userInstalledPipPackages: PythonPkgDetails[]): Promise<void> {
let packagesList: string[] = userInstalledPipPackages.map(pkg => { return pkg.name; });
// Filter out prose-codeaccelerator since we no longer ship it and it is not on Pypi.
packagesList = packagesList.filter(pkg => pkg !== 'prose-codeaccelerator');
let installPackagesCode = `import sys\n!{sys.executable} -m pip install --user ${packagesList.join(' ')}`;
let initialContent: azdata.nb.INotebookContents = {
cells: [{