dongqie2010 2018-07-05 10:23
浏览 178
已采纳

在Go中运行Python命令

I am trying following code:

package main
import ("fmt";  "log"; "os/exec")
func main() {
    cmd := exec.Command("/usr/bin/python3.5",  "-c",
        "import easygui as eg; print('Hello world'); eg.msgbox(msg='Hi there'); print('from Golang')")
    out, err := cmd.CombinedOutput()
    if err != nil {     log.Fatal(err)  }
    fmt.Printf(string(out)) }

I am trying it to print on terminal first, then show a gui messagebox, then again print on terminal.

However, it first shows a message box, then does both print statements.

How can this be solved?

  • 写回答

1条回答 默认 最新

  • doz59484 2018-07-05 11:06
    关注

    Your program runs cmd.CombinedOutput(), which launches the Python script (as a side effect displaying the message box) and collects its stdout into a variable; then does a single fmt.Printf to print out the program's output. That leads to the sequencing you're seeing.

    If you call cmd.StdoutPipe() then you will get an io.Reader that has the script's stdout instead. It's your responsibility to read from the pipe and copy to your own process's stdout; the os/exec documentation has an example. You need to cmd.Start(), then read everything from the pipe, then cmd.Wait() to clean up after yourself.

    You may also be able to directly assign cmd.Stdout = os.Stdout, then cmd.Run(). In this case you won't be able to see the output within your program, but you also won't have to copy it around.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器