go install 命令

Posted 开始战斗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go install 命令相关的知识,希望对你有一定的参考价值。

go install 命令简介

用于编译并安装代码包或源代码文件
安装代码包会在当前工作区的 ‘pkg/<平台相关目录>‘下生成‘归档文件‘
安装命令源码文件会在当前工作区的‘bin‘目录或 $GOBIN 目录下生成‘可执行文件‘ * 执行该命令且不追加任何参数时,它会试图把当前目录作为代码包并安装
* 执行该命令且以代码包的导入路径作为参数时,该代码包及其依赖会被安装
* 执行该命令且以命令源码文件及相关库源码文件作为参数时,只有这些文件会被编译并安装

 go install 干什么用的怎么用我暂时不知道

 

不过我从网上找了一些资料,写的很复杂,没看到,有看懂的希望能够留言告知

https://juejin.im/post/598611966fb9a03c391b7948

以上是关于go install 命令的主要内容,如果未能解决你的问题,请参考以下文章

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

go build和go install的区别

go的三个运行基本命令的区别,go run ,go build 和 go install

go install

环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础