From 291f591af3421899481725016ccb08a40424c036 Mon Sep 17 00:00:00 2001 From: Cory Rivera Date: Wed, 27 Feb 2019 14:21:34 -0800 Subject: [PATCH] Use upper case PATH for jupyter environment variables. (#4222) --- extensions/notebook/src/jupyter/jupyterServerInstallation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/notebook/src/jupyter/jupyterServerInstallation.ts b/extensions/notebook/src/jupyter/jupyterServerInstallation.ts index ec9eee3f52..938ca14ea4 100644 --- a/extensions/notebook/src/jupyter/jupyterServerInstallation.ts +++ b/extensions/notebook/src/jupyter/jupyterServerInstallation.ts @@ -214,7 +214,7 @@ export default class JupyterServerInstallation { this.pythonBinPath = path.join(pythonSourcePath, pythonBinPathSuffix); // Store paths to python libraries required to run jupyter. - this.pythonEnvVarPath = process.env.Path; + this.pythonEnvVarPath = process.env['PATH']; let delimiter = path.delimiter; if (process.platform === constants.winPlatform) {