Skip to content

Commit f4b2546

Browse files
committed
switch to python as default
see #237
1 parent b10164f commit f4b2546

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class PythonShell extends EventEmitter {
9393
private _endCallback: (err: PythonShellError, exitCode: number, exitSignal: string) => any
9494

9595
// starting 2020 python2 is deprecated so we choose 3 as default
96-
static defaultPythonPath = process.platform != "win32" ? "python3" : "py";
96+
static defaultPythonPath = process.platform != "win32" ? "python3" : "python";
9797

9898
static defaultOptions: Options = {}; //allow global overrides for options
9999

0 commit comments

Comments
 (0)