improve InstallPyDep for non-english path

This commit is contained in:
josc146 2023-06-21 12:08:04 +08:00
parent 3d123524e7
commit 1a5bf4a95e

View File

@ -4,7 +4,6 @@ import (
"errors" "errors"
"os" "os"
"os/exec" "os/exec"
"path/filepath"
"runtime" "runtime"
"strconv" "strconv"
"strings" "strings"
@ -52,11 +51,7 @@ func (a *App) InstallPyDep(python string, cnMirror bool) (string, error) {
if python == "" { if python == "" {
python, err = GetPython() python, err = GetPython()
if runtime.GOOS == "windows" { if runtime.GOOS == "windows" {
python, err = filepath.Abs(python) python = `"%CD%/` + python + `"`
if err != nil {
return "", err
}
python = `"` + python + `"`
} }
} }
if err != nil { if err != nil {