在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Golang官网下载地址: https://golang.google.cn/dl/
注意系统和版本的区别 1.打开官网下载地址选择对应的系统版本, 复制下载链接
2.将其解压缩到/usr/local/(会在/usr/local中创建一个go目录) tar -C /usr/local -xzf go1.13.6.linux-amd64.tar.gz
3.添加环境变量 在打开的文件最后添加: export GOPATH=/vagrant/go // wq保存退出后source一下 source /etc/profile 4.查看版本 go version 5.测试使用 在你的工作区创建hello.go package main import "fmt" func main() { fmt.Printf("hello, world\n") } 构建项目(Then build it with the go build hello.go 会生成一个名为hello的可执行文件 执行项目 $ ./hello hello, world If you see the "hello, world" message then your Go installation is working
官网版本使用介绍:https://golang.google.cn/doc/install?download=go1.13.6.linux-amd64.tar.gz (go1.13.6.linux-amd64.tar.gz版本) 环境变量:
GOPATH目录:一般来说GOPATH下面会有三个文件夹:
注意:如果要用 |
请发表评论