这是我纯手写的《Go语言入门》,手把手教你入门Go。源码+文章,看了你就会,此处应有掌声。
文章中所有的代码我都放到了github.com/GanZhiXiong/go_learning这个仓库中。
①、 在终端将包解压到/usr/local目录下
tar -C /usr/local -xzf 压缩包文件名 # 如go1.15.6.linux-amd64.tar.gz
②、配置环境变量
在$HOME/.profile
或/etc/profile
中(对于系统范围的安装)添加如下脚本
export PATH=$PATH:/usr/local/go/bin
③、执行source命令
source $HOME/.profile
# or
source /etc/profile
.msi
文件,下载后直接安装。C:\Go
目录下,安装包的形式安装应该是不需要再配置环境变量的。go
或go env
或go version
。package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}