博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GO安装
阅读量:6496 次
发布时间:2019-06-24

本文共 2316 字,大约阅读时间需要 7 分钟。

hot3.png

CentOS7安装Go运行和开发环境

下载并解压
[root soft]# wget -c https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz

(可用迅雷下载)

[root soft]# tar -C /usr/local/ -zxvf go1.8.3.linux-amd64.tar.gz

不用 make && make install 来安装了, 开箱即用

添加系统环境变量
[root soft]# vi /etc/profile.d/go.sh
export PATH=$PATH:/usr/local/go/bin
:wq!保存退出
[root soft]# source /etc/profile.d/go.sh
测试:

[root@localhost codis]# goGo is a tool for managing Go source code.Usage:        go command [arguments]The commands are:        build       compile packages and dependencies        clean       remove object files        doc         show documentation for package or symbol        env         print Go environment information        bug         start a bug report        fix         run go tool fix on packages        fmt         run gofmt on package sources        generate    generate Go files by processing source        get         download and install packages and dependencies        install     compile and install packages and dependencies        list        list packages        run         compile and run Go program        test        test packages        tool        run specified go tool        version     print Go version        vet         run go tool vet on packagesUse "go help [command]" for more information about a command.Additional help topics:        c           calling between Go and C        buildmode   description of build modes        filetype    file types        gopath      GOPATH environment variable        environment environment variables        importpath  import path syntax        packages    description of package lists        testflag    description of testing flags        testfunc    description of testing functionsUse "go help [topic]" for more information about that topic.

  

添加GOPATH目录
[root ~]# mkdir -p ~/go
添加这个目录路径作为GOPATH
[root@localhost ~]# vi /etc/profile.d/gopath.sh
export GOPATH=/root/go

保存退出:wq!

[root@localhost ~]# source /etc/profile.d/gopath.sh

    验证GOPATH环境变量是否添加成功

[root@localhost ~]# echo $GOPATH

/root/dev/go
 

运算GO环境测试

    创建测试文件 hello_world.go
[root@localhost ~]# vi ~/go/hello_world.go
    编辑文件

package mainimport (    "fmt")func main() {    fmt.Println( "Hello world!" )}

    运算测试文件 hello_world.go

[root@localhost ~]# go run ~/dev/go/hello_world.goHello world!

 

转载于:https://my.oschina.net/kenzheng/blog/1575845

你可能感兴趣的文章
[linux基础学习]run level
查看>>
第七周学习总结
查看>>
一步步的教你安装UChome (UChome 安装教程)
查看>>
[DeeplearningAI笔记]序列模型1.5-1.6不同类型的循环神经网络/语言模型与序列生成...
查看>>
P2533 [AHOI2012]信号塔
查看>>
Android电话拨号器(uri格式)与四种设置点击事件的方法
查看>>
java web中对json的使用
查看>>
TYVJ P1051 选课 Label:多叉转二叉&&树形dp(虐心♥)
查看>>
将数据库中提取出来的数据在后台进行分页处理
查看>>
bzoj1034
查看>>
百度地图 鼠标绘制,获取矩形,多边形的顶点经纬度
查看>>
回文树模板
查看>>
struts2之防止表单重复提交
查看>>
【转】Netty系列之Netty并发编程分析
查看>>
cf591d
查看>>
图片存储系统TFS
查看>>
MYSQL备份与恢复
查看>>
贪心/数学 Codeforces Round #212 (Div. 2) A. Two Semiknights Meet
查看>>
Python类__call__()方法
查看>>
「小程序JAVA实战」 小程序wxss样式文件的使用(七)
查看>>