我是靠谱客的博主 霸气小霸王,最近开发中收集的这篇文章主要介绍Error: go install: no install location for .go files listed on command line (GOBIN not set)e.g.go installgo build,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

  • e.g.
  • go install
  • go build

e.g.

当前目录结构

  • src
    • hello
      • Hello.go

go install

go install src/hello/Hello.go 编译 会出现以下错误

go install: no install location for .go files listed on command line (GOBIN not set)

这是因为对单个文件使用go install,就会出现这个错误

应该用 go install hello 编译
就会编译出 bin/hello 文件

之后用 ./bin/hello 运行

go build

go build hello 会编译出 hello在当前目录下

此时 运行 hello 无法运行, 必须用 ./hello

最后

以上就是霸气小霸王为你收集整理的Error: go install: no install location for .go files listed on command line (GOBIN not set)e.g.go installgo build的全部内容,希望文章能够帮你解决Error: go install: no install location for .go files listed on command line (GOBIN not set)e.g.go installgo build所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部