mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 01:25:39 -05:00
Skip checking if python is running when only doing package upgrades during python install. (#13995)
This commit is contained in:
@@ -23,6 +23,7 @@ export interface ConfigurePythonModel {
|
||||
pythonPathLookup: PythonPathLookup;
|
||||
packagesToInstall: PythonPkgDetails[];
|
||||
installation: JupyterServerInstallation;
|
||||
packageUpgradeOnly: boolean;
|
||||
}
|
||||
|
||||
export class ConfigurePythonWizard {
|
||||
@@ -164,7 +165,8 @@ export class ConfigurePythonWizard {
|
||||
let installSettings: PythonInstallSettings = {
|
||||
installPath: pythonLocation,
|
||||
existingPython: useExistingPython,
|
||||
packages: this.model.packagesToInstall
|
||||
packages: this.model.packagesToInstall,
|
||||
packageUpgradeOnly: this.model.packageUpgradeOnly
|
||||
};
|
||||
this.jupyterInstallation.startInstallProcess(false, installSettings)
|
||||
.then(() => {
|
||||
|
||||
Reference in New Issue
Block a user