Clarify some error messages in deployment notebooks and python installation. (#6658)

This commit is contained in:
Cory Rivera
2019-08-08 16:54:14 -07:00
committed by GitHub
parent 7adb8dd74b
commit 1ff9a2ec4c
5 changed files with 10 additions and 10 deletions

View File

@@ -29,7 +29,7 @@ const msgPythonUnpackError = localize('msgPythonUnpackError', "Error while unpac
const msgTaskName = localize('msgTaskName', "Installing Notebook dependencies");
const msgInstallPkgStart = localize('msgInstallPkgStart', "Installing Notebook dependencies, see Tasks view for more information");
const msgInstallPkgFinish = localize('msgInstallPkgFinish', "Notebook dependencies installation is complete");
const msgPythonRunningError = localize('msgPythonRunningError', "Cannot overwrite existing Python installation while python is running.");
const msgPythonRunningError = localize('msgPythonRunningError', "Cannot overwrite an existing Python installation while python is running. Please close any active notebooks before proceeding.");
const msgPendingInstallError = localize('msgPendingInstallError', "Another Python installation is currently in progress.");
const msgSkipPythonInstall = localize('msgSkipPythonInstall', "Python already exists at the specific location. Skipping install.");
function msgDependenciesInstallationFailed(errorMessage: string): string { return localize('msgDependenciesInstallationFailed', "Installing Notebook dependencies failed with error: {0}", errorMessage); }
@@ -633,4 +633,4 @@ export interface PipPackageOverview {
name: string;
versions: string[];
summary: string;
}
}