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 5b4c762 commit 640de90Copy full SHA for 640de90
libs/python/detect.go
@@ -30,7 +30,7 @@ func DetectExecutable(ctx context.Context) (string, error) {
30
// contains python.exe but no python3.exe. However, system python does have python3 entry
31
// and it is also added to PATH, so it is found first.
32
if runtime.GOOS == "windows" {
33
- out, err := exec.LookPath("python.exe")
+ out, err := exec.LookPath("python")
34
if err == nil && out != "" {
35
return out, nil
36
}
0 commit comments