基于Go和Gin的环境配置方法
程序员文章站
2022-04-28 17:21:37
1.官方下载go版本,安装相应平台的程序。
2.配置go的环境变量:
goroot:go安装路径,例如goroot = d:\go
gopath: 项目源码所在目录(...
1.官方下载go版本,安装相应平台的程序。
2.配置go的环境变量:
goroot:go安装路径,例如goroot = d:\go
gopath: 项目源码所在目录(例如gopath = e:\go),该目录下面主要包括三个子目录,分别是src、bin、pkg
gobin:bin目录,例如gobin = e:\go\bin
window平台添加path路径:%goroot%\bin;%gobin%
具体环境变量可以使用go env查看:
c:\users\rambo>go env set goarch=386 set gobin=e:\go\bin set goexe=.exe set gohostarch=386 set gohostos=windows set goos=windows set gopath=e:\go set gorace= set goroot=d:\program files\go set gotooldir=d:\program files\go\pkg\tool\windows_386 set cc=gcc set gogccflags=-m32 -mthreads -fmessage-length=0 set cxx=g++ set cgo_enabled=1
3.安装gin,这个需要*,可以去购买一个ss。
因为需要使用go get,所以前提必须安装git,安装完之后,使用命令
go get gopkg.in/gin-gonic/gin.v1
ss在wnidow上必须配置git的proxy才能连接外网,所以首先配置http和https的proxy:
git config --global http.proxy “socks5://127.0.0.1:1080” git config --global https.proxy “socks5://127.0.0.1:1080”
这样设置还是无法下载gin,一般会碰到gopkg.in网站uri重定向的问题,可以设置对重定向的支持:
git config --global http.https://gopkg.in.followredirects true
完成这些,我们还忘了一步,我们需要对https支持的话必须通过ssl的认证:
git config http.sslverify true
设置这么多如果一切顺利就可以下载gin,我们来看一下刚才git的配置信息:
git config --global --list
结果如下:
c:\users\rambo>git config --global --list http.proxy=socks5://127.0.0.1:1080 http.sslverify=true https.proxy=socks5://127.0.0.1:1080 http.https://gopkg.in.followredirects=true
以上这篇基于go和gin的环境配置方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。