go 基础安装

Posted liubiaos

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go 基础安装相关的知识,希望对你有一定的参考价值。

一、安装:

  1、下载GO的地址:https://golang.org/dl/

      点击安装包进行安装(linux直接解压)

      设置环境变量(linux)
        1. export GOROOT=$PATH:/path/to/go/
        2. export PATH=$PATH:$GOROOT/bin/
        3. export GOPATH=/home/user/project/go
      设置环境变量(window不用设置

  2、IDE选择(Visual Studio Code)

    下载地址:https://code.visualstudio.com/

    查看>扩展>查找Go>安装

  3、调试工具的安装

    教程:https://github.com/derekparker/delve/tree/master/Documentation/installation

    win: cmd中输入go get github.com/derekparker/delve/cmd/dlv

  4、目录

    技术分享图片

  5、环境变量设置

 

  6、第一个程序

package main     //定义包名

import (
	"fmt"   //引用fmt包,fmt包实现格式化IO(输入/输出)的函数
)

func main(){
    /* 长段注释 */ fmt.Println("hello world")  //需要打印的内容 }

  

  7、打印一个从1到100的 程序

goroute.go
package main

import (
	"fmt"
)

func test_goroute(a int ){
	fmt.Println(a)
}

  main.go

package main

import (
	"time"
)


func main(){
	for i := 0; i<100; i++{
		go test_goroute(i)
	}

	time.Sleep(time.Second)
}

 

 

    

以上是关于go 基础安装的主要内容,如果未能解决你的问题,请参考以下文章

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

你知道的Go切片扩容机制可能是错的

windows通过Visual Studio Code中配置GO开发环境(转)

在Visual Studio Code中配置GO开发环境

Go语言开发基础环境搭建

npm : 无法加载文件 D:softcodeProcess ode ode_global pm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micr +(代码片段