部署go环境

栏目: Go · 发布时间: 6年前

内容简介:直接下载go的安装包下载地址,1.11进行安装安装完成后,在终端验证是否安装成功.为了保证相关文件系统在任何位置都能使用,你还需要添加以下内容:

1、 go 环境变量

  • GOROOT go在电脑中的安装位置
  • GOPATH go项目存放目录
  • GOBIN go编译的安装位置,默认为$GOROOT/bin

2、安装go

mac

直接下载go的安装包下载地址,1.11进行安装

安装完成后,在终端验证是否安装成功.

$~ go version
go version go1.11 darwin/amd64

为了保证相关文件系统在任何位置都能使用,你还需要添加以下内容:

$~ echo "export PATH=$PATH:$GOROOT/bin" > ~/.bash_profile
$~ echo "export GOPATH=/Users/xxx/go" > ~/.bash_profile
$~ echo "export PATH=$PATH:$GOROOT/bin" > ~/.bash_profile
$~ source ~/.bash_profile

查看go环境变量

$~ go env
GOPATH="/Users/xxx/go"
GOPROXY=""
GORACE=""
GOROOT="/usr/local/go"

在GOPATH目录为src,bin,pkg三个子目录

  • src,源码目录
  • bin,编译后的可执行文件
  • pkg, 编译后的包文件

在src下新建一个hello.go

package main

import "fmt"

func main() {
    fmt.Println("hello, golang")
}

验证输出

$~ go run hello.go
hello, golang

输出hello, golang,go安装成功。liunx,windows没有,我没用这两个系统。


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

The Web Designer's Idea Book

The Web Designer's Idea Book

Patrick Mcneil / How / 2008-10-6 / USD 25.00

The Web Designer's Idea Book includes more than 700 websites arranged thematically, so you can find inspiration for layout, color, style and more. Author Patrick McNeil has cataloged more than 5,000 s......一起来看看 《The Web Designer's Idea Book》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

随机密码生成器
随机密码生成器

多种字符组合密码

html转js在线工具
html转js在线工具

html转js在线工具