We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10164f commit f4b2546Copy full SHA for f4b2546
index.ts
@@ -93,7 +93,7 @@ export class PythonShell extends EventEmitter {
93
private _endCallback: (err: PythonShellError, exitCode: number, exitSignal: string) => any
94
95
// starting 2020 python2 is deprecated so we choose 3 as default
96
- static defaultPythonPath = process.platform != "win32" ? "python3" : "py";
+ static defaultPythonPath = process.platform != "win32" ? "python3" : "python";
97
98
static defaultOptions: Options = {}; //allow global overrides for options
99
0 commit comments