Centos7 安装golang-1.12.7环境

东666 · · 672 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

本人也是今天正式开始步入Golang语言的学习,希望大家一起共同学习。
官网地址:https://studygolang.com/dl

系统要求

Operating system Architectures Notes
FreeBSD 10.3 or later amd64, 386 Debian GNU/kFreeBSD not supported
Linux 2.6.23 or later with glibc amd64, 386, arm, arm64, s390x, ppc64le CentOS/RHEL 5.x not supported. Install from source for other libc.
macOS 10.10 or later amd64 use the clang or gcc† that comes with Xcode‡ for cgo support
Windows 7, Server 2008R2 or later amd64, 386 use MinGW gcc†. No need for cygwin or msys.

安装GO工具

[root@devlop package]# wget https://studygolang.com/dl/golang/go1.12.7.linux-amd64.tar.gz

[root@devlop package]# tar -zxvf go1.12.7.linux-amd64.tar.gz -C /usr/local/

[root@devlop package]# cd /usr/local/go/

[root@devlop go]# ls

api  AUTHORS  bin  CONTRIBUTING.md  CONTRIBUTORS  doc  favicon.ico  lib  LICENSE  misc  PATENTS  pkg  README.md  robots.txt  src  test  VERSION

为GO设置全局环境变量。

[root@devlop go]# vim /etc/profile <!--在最后添加一行-->

export PATH=$PATH:/usr/local/go/bin

[root@devlop go]# source /etc/profile

[root@devlop ~]# go version

go version go1.12.7 linux/amd64

新建test项目测试

[root@devlop ~]# mkdir test

[root@devlop ~]# vim test/test.go

package main

import "fmt"
func main() {
    fmt.Println("Welcome  Golang")
}
保存退出并编译test.go文件

[root@devlop ~]# cd test/
[root@devlop test]# go build test.go

编译后会在项目文件夹下生成test可执行文件,并运行该文件

Centos7 安装golang-1.12.7环境

两种方式任选其一:

Centos7 安装golang-1.12.7环境

好了到这里我们我安装结束了。欢迎一起学习Golang ! ! !


有疑问加站长微信联系(非本文作者)

本文来自:51CTO博客

感谢作者:东666

查看原文:Centos7 安装golang-1.12.7环境

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

672 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传