filter out prose-accelerator (#15633) (#15654)

This commit is contained in:
Lucy Zhang
2021-06-10 16:37:02 -04:00
committed by GitHub
parent e3ef2d53f9
commit 0e9f1ad6d1

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: [{