Go语言入门之旅(二):环境搭建-Linux篇
2018-06-20 本文已影响70人
程序员读书
一个Golang小白的学习笔记,希望与大家共同学习,写得不好的地方,请大家指正,多谢!~
虽然我们一般都在Windows操作系统上进行开发,但一般线上生产服务器系统装的都是Linux,因此熟悉Go语言在Linux上的安装配置也是Go初学者必须掌握的技能。
Go语言官方网站为我们提供linux操作系统的二进制安装包,可以非常简单地安装,除了使用二进制外,不同的Linux发行版也提供不同的第三方安装工具,如Centos的yum和Ubuntu的apt-get。
安装
1. 二进制包安装(推荐)
根据自己的电脑是32位还是64位下载对应的安装包,比如我下载的是64位的,
wget https://dl.google.com/go/go1.10.3.linux-amd64.tar.gz //使用wget命令下载安装包
tar -zxvf -C /usr/local/go go1.10.3.linux-amd64.tar.gz //解压到/usr/local/go目录
2. Yum安装
sudo yum install go
3. apt-get安装
sudo apt-get install golang
配置环境变量
export GOROOT=/usr/lib/go
export GOARCH=386 //处理器加构,如果是64位的,应改为amd64
export GOOS=linux
export GOPATH=/home/gopath
export GOBIN=$GOPATH/bin
export PATH=$GOPATH/bin:$PATH
1. GOROOT
GOROOT指向的是Go的安装目录。
2. GOPATH
工作区,按规范分为三个目录:src,pkg,bin
一般GOPATH目录如下
$GOPATH
bin/
main.exe
pkg/
windows_amd64
lib.a
src/
main.go
lib
lib.go
在终端命令行输入go命令,运行结果如下表示配置成功
$ go
Go is a tool for managing Go source code.
Usage:
go command [arguments]
The commands are:
build compile packages and dependencies
clean remove object files
doc show documentation for package or symbol
env print Go environment information
bug start a bug report
fix run go tool fix on packages
fmt run gofmt on package sources
generate generate Go files by processing source
get download and install packages and dependencies
install compile and install packages and dependencies
list list packages
run compile and run Go program
test test packages
tool run specified go tool
version print Go version
vet run go tool vet on packages
Use "go help [command]" for more information about a command.
Additional help topics:
c calling between Go and C
buildmode description of build modes
filetype file types
gopath GOPATH environment variable
environment environment variables
importpath import path syntax
packages description of package lists
testflag description of testing flags
testfunc description of testing functions
Use "go help [topic]" for more information about that topic.
第一个Go语言程序
在GOPATH的src目录新建main.go文件,代码如下
package main
import "fmt"
func main(){
fmt.Println("Hello World")
}
运行
$ go run main.go
Hello World