万事开头难-go语言的安装及环境配置

简介: 万事开头难-go语言的安装及环境配置

@[toc]

一 . 前言

go语言官网:https://golang.google.cn/

go中文网:https://studygolang.com/dl

二. 下载相应的软件包

在这里插入图片描述

现在最新版本是1.19版本

linux 和Windows两个系统的包都可以下载:

在这里插入图片描述

三. 安装:

在这里插入图片描述

1. 双击开始安装

FFF,t_70,g_se,x_16)

2. 选择合适的路径安装

在这里插入图片描述
在这里插入图片描述
路径可以新建一个,比如我后来的安装中,放到了c:\golang\

不要忘记你安装的路径,所以尽可能用个好记的名字

3. 开始安装

在这里插入图片描述

点击install就开始安装了。

4. 测试

安装完成之后开始测试:

打开CMD 输入go
在这里插入图片描述

查看版本使用:version

在这里插入图片描述

如果在cmd中没有出现版本,需要修改环境变量

6. 配置变量 GOPATH

GOPATH 是 Go语言中使用的一个环境变量,它使用绝对路径提供项目的工作目录(workspace)。

GOPATH下创建src文件夹,即存放Go项目代码的位置。

默认情况下在golang1.9中你安装的时候,你的安装路径就是你的GOPATH路径,不需要修改。

搜索:在这里插入图片描述
在这里插入图片描述

新建一个目录,用来存放后期写的代码:

在这里插入图片描述
默认这个值和你的环境变量是一样的,如果已经存在可以删掉重新创建

系统变量中:

变量名:GOROOT
变量值:C:\GO
(写你的go的安装目录,不要乱写)

变量名:GOPATH
变量值:D:\golang
此处的golang是我们后面要创建go项目的 地址
在这个路径中要创建 bin src pkg 三个文件夹

GoWork有三个目录

在这里插入图片描述

src // 存储go的源代码(需要我们自己手动创建)
pkg // 存储编译后生成的包文件 (自动生成)
bin // 存储生成的可执行文件(自动生成)

配置好后,查看环境变量:

C:\Users\xinsz08>go env
set GO111MODULE=
set GOARCH=amd64
set GOBIN=
set GOCACHE=C:\Users\xinsz08\AppData\Local\go-build
set GOENV=C:\Users\xinsz08\AppData\Roaming\go\env
set GOEXE=.exe
set GOEXPERIMENT=
set GOFLAGS=
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOINSECURE=
set GOMODCACHE=E:\GoWork\pkg\mod
set GONOPROXY=
set GONOSUMDB=
set GOOS=windows
set GOPATH=E:\GoWork
set GOPRIVATE=
set GOPROXY=https://proxy.golang.org,direct
set GOROOT=E:\golang_install_win
set GOSUMDB=sum.golang.org
set GOTMPDIR=
set GOTOOLDIR=E:\golang_install_win\pkg\tool\windows_amd64
set GOVCS=
set GOVERSION=go1.17.5
set GCCGO=gccgo
set AR=ar
set CC=gcc
set CXX=g++
set CGO_ENABLED=1
set GOMOD=NUL
set CGO_CFLAGS=-g -O2
set CGO_CPPFLAGS=
set CGO_CXXFLAGS=-g -O2
set CGO_FFLAGS=-g -O2
set CGO_LDFLAGS=-g -O2
set PKG_CONFIG=pkg-config
set GOGCCFLAGS=-m64 -mthreads -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=D:\Temp\go-build1159393017=/tmp/go-build -gno-record-gcc-switches

其中: GOROOT表示开发包的安装目录
set GOROOT=C:\golang
set GOPATH=C:\go

补充:

执行完go之后出来的参数

C:\Users\xinsz08>go
Go is a tool for managing Go source code.

Usage:

        go <command> [arguments]

The commands are:

        bug         start a bug report   ## bug 报告
        build       compile packages and dependencies## 构建包和依赖项 
        clean       remove object files and cached files  ## 清楚缓存文件和对象
        doc         show documentation for package or symbol
        env         print Go environment information
        fix         update packages to use new APIs
        fmt         gofmt (reformat) package sources
        generate    generate Go files by processing source
        get         add dependencies to current module and install them
        install     compile and install packages and dependencies  ## 安装编译依赖项
        list        list packages or modules
        mod         module maintenance
        run         compile and run Go program  ## 运行go程序
        test        test packages
        tool        run specified go tool
        version     print Go version   ## 打印版本
        vet         report likely mistakes in packages

Use "go help <command>" for more information about a command.

Additional help topics:

        buildconstraint build constraints
        buildmode       build modes
        c               calling between Go and C
        cache           build and test caching
        environment     environment variables
        filetype        file types
        go.mod          the go.mod file
        gopath          GOPATH environment variable
        gopath-get      legacy GOPATH go get
        goproxy         module proxy protocol
        importpath      import path syntax
        modules         modules, module versions, and more
        module-get      module-aware go get
        module-auth     module authentication using go.sum
        packages        package lists and patterns
        private         configuration for downloading non-public code
        testflag        testing flags
        testfunc        testing functions
        vcs             controlling version control with GOVCS

Use "go help <topic>" for more information about that topic.


C:\Users\xinsz08>

四. 卸载go语言

1. 双击安装包

在这里插入图片描述

2. 点击remove

在这里插入图片描述
在这里插入图片描述

3. 卸载完成

在这里插入图片描述

五. 注册github

填写账号密码
在这里插入图片描述

  1. 登陆

在这里插入图片描述

一些提示,看看就好

在这里插入图片描述

下载github桌面

https://desktop.github.com/

私人地址: https://github.com/mufengxiaoyue/golang.git

六. 总结

go的安装越来越智能化,学习的难度越来越小.,go+github 让学习更简单

github和git如何使用,后面再写一篇文章.

相关文章
|
8天前
|
存储 Go 索引
go语言中数组和切片
go语言中数组和切片
21 7
|
8天前
|
Go 开发工具
百炼-千问模型通过openai接口构建assistant 等 go语言
由于阿里百炼平台通义千问大模型没有完善的go语言兼容openapi示例,并且官方答复assistant是不兼容openapi sdk的。 实际使用中发现是能够支持的,所以自己写了一个demo test示例,给大家做一个参考。
|
8天前
|
程序员 Go
go语言中结构体(Struct)
go语言中结构体(Struct)
85 71
|
7天前
|
存储 Go 索引
go语言中的数组(Array)
go语言中的数组(Array)
92 67
|
8天前
|
存储 Go
go语言中映射
go语言中映射
25 11
|
10天前
|
Go
go语言for遍历映射(map)
go语言for遍历映射(map)
24 12
|
9天前
|
Go 索引
go语言使用索引遍历
go语言使用索引遍历
18 9
|
9天前
|
Go 索引
go语言使用range关键字
go语言使用range关键字
17 7
|
10天前
|
Go
go语言for 遍历字符串
go语言for 遍历字符串
22 8
|
9天前
|
Go 索引
go语言修改元素
go语言修改元素
19 6