内容简介:安装go查看go环境变量设置go环境变量
基本
安装go brew install go
查看 go 环境变量 go ev
设置go环境变量 vim .bash_profile
export GOPATH=和go环境变量显示的一样 export GOBIN=$GOPATH/bin export PATH=$PATH:$GOBIN
让设置生效 source .bash_profile
或者使用 docker 环境开发,我的环境:通过vagrant&virtualBox安装centos安装docker安装golang docker.关于docker 点击这里
go mod
go mod支持golang1.11+,解决Go依赖更新的问题,并且让项目源码可以在任意一个目录放置,不再像以前那样只能放在src.
mkdir testmod cd testmod
package testmod import "fmt" func Hi(name string) string { return fmt.Sprintf("Hi, %s", name) }
go mod init github.com/robteix/testmod
提交
git init git add * git commit -am "First commit" git push -u origin master
使用刚才创建的包
go get github.com/robteix/testmod
使用刚才创建的包或者
package main import ( "fmt" "github.com/robteix/testmod" ) func main() { fmt.Println(testmod.Hi("roberto")) }
在项目目录根目录执行
go mod init mod go build
更新包
go get -u go get -u=patch go get github.com/robteix/testmod@v1.0.1
go mod download download modules to local cache (下载依赖的module到本地cache)) edit edit go.mod from tools or scripts (编辑go.mod文件) graph print module requirement graph (打印模块依赖图)) init initialize new module in current directory (再当前文件夹下初始化一个新的module, 创建go.mod文件)) tidy add missing and remove unused modules (增加丢失的module,去掉未用的module) vendor make vendored copy of dependencies (将依赖复制到vendor下) verify verify dependencies have expected content (校验依赖) why explain why packages or modules are needed (解释为什么需要依赖)
以上所述就是小编给大家介绍的《go 安装配置(一)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
DOM Scripting
Jeremy Keith / friendsofED / 2010-12 / GBP 27.50
There are three main technologies married together to create usable, standards-compliant web designs: XHTML for data structure, Cascading Style Sheets for styling your data, and JavaScript for adding ......一起来看看 《DOM Scripting》 这本书的介绍吧!