标签:安装 pytho file tar 查看 环境安装 local world 版本
解压安装包
tar xf go1.4.1.linux-amd64.tar.gz mv go /usr/local/
环境变量设置
[root@python bin]# vim /etc/profile.d/go.sh export GO_HOME=/usr/local/go export PATH=$GO_HOME/bin:$PATH [root@python bin]# exec bash
查看版本
[root@python bin]# go version go version go1.4.1 linux/amd64
打印Hello, World!
[root@python ~]# vim test.go package main import "fmt" func main() { fmt.Println("Hello, World!") } [root@python ~]# go run test.go Hello, World!
标签:安装 pytho file tar 查看 环境安装 local world 版本
原文地址:https://www.cnblogs.com/rdchenxi/p/10838481.html