英文:
godep: exec: "go": executable file not found in $PATH?
问题
我正在尝试运行make run
,但出现了这个错误。我不知道如何设置这个。
英文:
I am trying to run make run
. But getting this. I do not know to how to set this.
答案1
得分: 2
你需要将路径变量设置为你的Go包安装的位置。通常在Ubuntu上,它安装在/bin
文件夹中。所以在你的情况下,你需要将其设置为:
$ export PATH=$PATH:$GOPATH/bin
在这里查看文档:https://golang.org/doc/code.html
英文:
You need to set the path variable to where your go package is installed. Typically on ubuntu is installed on the /bin
folder. So in your case you have to set it to:
$ export PATH=$PATH:$GOPATH/bin
Check the documentation here: https://golang.org/doc/code.html
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论