首页 > 其他 > 详细

GOLANG配置

时间:2020-02-12 10:03:20      阅读:52      评论:0      收藏:0      [点我收藏+]

根据操作系统下载对应的软件包

https://golang.google.cn/dl/

GOROOT就是go的安装路径

在~/.bash_profile中添加下面语句:

export GOROOT=/usr/local/go
export GOPATH=/Users/workspaces
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin

如果要上述设置生效, 可以执行命令: source ~/.bash_profile

 

在hello.go中输入:

package main

import "fmt"

func main() {

      fmt.Println("Hello, GO !")

}

 

GOLANG配置

原文:https://www.cnblogs.com/enumx/p/12297667.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!