Use upper case PATH for jupyter environment variables. (#4222)

This commit is contained in:
Cory Rivera
2019-02-27 14:21:34 -08:00
committed by GitHub
parent 5a48c52a95
commit 291f591af3

View File

@@ -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) {