61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
package backend_golang
|
|
|
|
import (
|
|
"errors"
|
|
"os/exec"
|
|
"strconv"
|
|
)
|
|
|
|
func (a *App) StartServer(port int) (string, error) {
|
|
python, err := GetPython()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return Cmd(python, "./backend-python/main.py", strconv.Itoa(port))
|
|
}
|
|
|
|
func (a *App) ConvertModel(modelPath string, strategy string, outPath string) (string, error) {
|
|
python, err := GetPython()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return Cmd(python, "./backend-python/convert_model.py", "--in", modelPath, "--out", outPath, "--strategy", strategy)
|
|
}
|
|
|
|
func (a *App) DepCheck() error {
|
|
python, err := GetPython()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
out, err := exec.Command(python, "./backend-python/dep_check.py").CombinedOutput()
|
|
if err != nil {
|
|
return errors.New("DepCheck Error: " + string(out))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (a *App) InstallPyDep(cnMirror bool) (string, error) {
|
|
python, err := GetPython()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if cnMirror {
|
|
_, err = Cmd(python, "./backend-python/get-pip.py", "-i", "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
} else {
|
|
_, err = Cmd(python, "./backend-python/get-pip.py")
|
|
}
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
ChangeFileLine("./py310/python310._pth", 3, "Lib\\site-packages")
|
|
_, err = Cmd(python, "-m", "pip", "install", "torch==1.13.1", "torchvision==0.14.1", "torchaudio==0.13.1", "--index-url", "https://download.pytorch.org/whl/cu117")
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if cnMirror {
|
|
return Cmd(python, "-m", "pip", "install", "-r", "./backend-python/requirements.txt", "-i", "https://pypi.tuna.tsinghua.edu.cn/simple")
|
|
} else {
|
|
return Cmd(python, "-m", "pip", "install", "-r", "./backend-python/requirements_versions.txt")
|
|
}
|
|
}
|