英文:
Getting Python version using Go
问题
我正在尝试使用Go获取我的Python版本:
import (
"log"
"os/exec"
"strings"
)
func verifyPythonVersion() {
_, err := exec.LookPath("python")
if err != nil {
log.Fatalf("未找到Python版本")
}
out, err := exec.Command("python", "--version").Output()
log.Print(out)
if err != nil {
log.Fatalf("使用'python'命令检查Python版本时出错:%v", err)
}
fields := strings.Fields(string(out))
log.Print(fields)
}
func main() {
verifyPythonVersion()
}
这将返回空切片:
2014/01/03 20:39:53 []
2014/01/03 20:39:53 []
有任何想法我做错了什么吗?
英文:
I'm trying to get my Python version using Go:
import (
"log"
"os/exec"
"strings"
)
func verifyPythonVersion() {
_, err := exec.LookPath("python")
if err != nil {
log.Fatalf("No python version located")
}
out, err := exec.Command("python", "--version").Output()
log.Print(out)
if err != nil {
log.Fatalf("Error checking Python version with the 'python' command: %v", err)
}
fields := strings.Fields(string(out))
log.Print(fields)
}
func main() {
verifyPythonVersion()
}
This returns empty slices:
2014/01/03 20:39:53 []
2014/01/03 20:39:53 []
Any idea what I'm doing wrong?
答案1
得分: 8
以下是翻译好的内容:
$ python --version
Python 2.7.2
$ python --version 1>/dev/null # 隐藏标准输出
Python 2.7.2
$ python --version 2>/dev/null # 隐藏标准错误输出
我们可以得出结论,输出结果是发送到标准错误输出(stderr)。现在我查看了Go的文档,猜猜看,`cmd.Output`只捕获标准输出([文档](http://golang.org/pkg/os/exec/#Cmd.Output))。你应该使用`cmd.CombinedOutput`([文档](http://golang.org/pkg/os/exec/#Cmd.CombinedOutput)):
> CombinedOutput运行命令并返回其合并的标准输出和标准错误输出。
英文:
$ python --version
Python 2.7.2
$ python --version 1>/dev/null # hide stdout
Python 2.7.2
$ python --version 2>/dev/null # hide stderr
We can conclude that the output goes to stderr. Now I took a look at Go's docs, and guess what, cmd.Output
only captures stdout (docs). You should use cmd.CombinedOutput
(docs) :
> CombinedOutput runs the command and returns its combined standard output and standard error.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论