1、下载源码包:go1.7rc3.linux-amd64.tar.gz
2、将下载的源码包解压至 /usr/local目录。
<pre class="prettyprint prettyprinted" style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; color: rgb(51, 51, 51); font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;">tar -C /usr/local -xzf go1.7rc3.linux-amd64.tar.gz</pre>
3、将 /usr/local/go/bin 目录添加至PATH环境变量:
vim /etc/profile
export GOROOT=/opt/go #设置为go安装的路径
export GOPATH=/code/goDemo #默认安装包的路径
export PATH=GOROOT/bin:$GOPATH/bin
source /etc/profile
4、查看版本信息
5:GOPATH设置 (参考文档:https://studygolang.com/articles/7202)
go
命令依赖一个重要的环境变量:$GOPATH
GOPATH
允许多个目录,当有多个目录时,请注意分隔符,多个目录的时候Windows是分号;
,Linux系统是冒号:
当有多个GOPATH时
默认将go get
获取的包存放在第一个目录下
$GOPATH
目录约定有三个子目录
-
src
存放源代码(比如:.go .c .h .s等) -
pkg
编译时生成的中间文件(比如:.a) -
bin
编译后生成的可执行文件(为了方便,可以把此目录加入到 {GOPATH//://bin:}/bin`添加所有的bin目录)
每天坚持学习1小时Go语言,大家加油,我是彬哥,下期见!如果文章中不同观点、意见请文章下留言或者关注下方订阅号反馈!
社区交流群:221273219
Golang语言社区论坛 :
www.Golang.Ltd
LollipopGo游戏服务器地址:
https://github.com/Golangltd/LollipopGo
社区视频课程课件GIT地址:
https://github.com/Golangltd/codeclass
有疑问加站长微信联系(非本文作者)