go开发前期准备

2021/9/17 23:06:26

本文主要是介绍go开发前期准备,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

安装

本文主要介绍的是windows环境配置.

访问: https://golang.org/dl/ 或 https://golang.google.cn/dl/下载安装包 windows下载msi文件即可。

安装完随便运行一段go代码,运行正常即可

package main

import "fmt"

func main() {
   fmt.Println("Hello, World!")
}

环境配置

假设

go的安装路径是: D:\Go
go项目的开发路径是: E:\GoProject

环境变量

Path

  1. 在path结尾加上安装路径下的bin目录: D:\Go\bin;
  2. 在path结尾加上开发路径E:\goProjects;

GOPATH

新增/修改GOPATHE:\goProjects;

目录配置

$GOPATH目录下新建三个文件夹: pkg, bin, src

  1. pkg
    存放编译后生成的归档文件
  2. bin
    存放编译后生成的可执行文件
  3. src
    存放源码文件

代理配置

# 设置goproxy.io代理
go env -w GOPROXY="https://goproxy.io"
# 设置GO111MOUDLE
go env -w GO111MODULE="on"

未配置代理执行go get时, 会报以下错误

go get: module github.com/gin-gonic/gin: Get "https://proxy.golang.org/github.com/gin-gonic/gin/@v/l
ist": dial tcp 172.217.160.81:443: connectex: A connection attempt failed because the connected part
y did not properly respond after a period of time, or established connection failed because connecte
d host has failed to respond.

在这里插入图片描述



这篇关于go开发前期准备的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程