CentOS 32 bit安装golang 1.7

前端之家收集整理的这篇文章主要介绍了CentOS 32 bit安装golang 1.7前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原文:http://studygolang.com/wr?u=http%3a%2f%2fblog.csdn.net%2fzgljl2012%2farticle%2fdetails%2f53183931


这里下载相应的包

CentOS 32bit对应的包为:https://storage.googleapis.com/golang/go1.7.3.linux-386.tar.gz

下载命令:

 
 
  • 1
  • 1
wget https://storage.googleapis.com/golang/go1.7.3.linux-386.tar.gz

下载后解压缩:

  
  
  • 1
  • tar -zxvf go1 然后将golang放到指定的文件夹,我是放在/opt/go

      
      
  • 1
  • mv go /opt/go

    设置环境变量GOROOT

      
      
  • 1
  • export GOROOT=/opt/go

    在系统bin目录下添加go程序的链接

      
      
  • 1
  • ln -s /opt/go/bin/go /bin/ 到此,就可以执行go了

      
      
  • 1
  • go version

    出现版本信息即安装成功。


    centos7 64位安装方法

    原文:http://studygolang.com/articles/8560

    环境(个人阿里云主机):

    # hostnamectl
       Static hostname: iZ23nwzgx3sZ
             Icon name: computer-vm
               Chassis: vm
            Machine ID: 45461f76679f48ee96e95da6cc798cc8
               Boot ID: 4022018209e04363871ed0279a30c225
        Virtualization: xen
      Operating System: CentOS Linux 7 (Core)
           CPE OS Name: cpe:/o:centos:centos:7
                Kernel: Linux 3.10.0-229.11.1.el7.x86_64
          Architecture: x86-64
    # lsb_release -a
    LSB Version:    :core-4.1-amd64:core-4.1-noarch
    Distributor ID: CentOS
    Description:    CentOS Linux release 7.2.1511 (Core) 
    Release:        7.2.1511
    Codename:       Core

    到官方https://golang.org/dl/下载安装包

    </pre><pre name="code" class="plain">#wget https://storage.googleapis.com/golang/go1.7.1.linux-amd64.tar.gz
    
    # tar zxvf go1.7.1.linux-amd64.tar.gz -C /usr/local
    
    新建GOPATH目录
    # mkdir -p /mnt/wwwroot/gofile
    # vim /etc/profile
    
    export GOROOT=/usr/local/go
    export GOBIN=$GOROOT/bin
    export PATH=$PATH:$GOBIN
    export GOPATH=/mnt/wwwroot/gofile
    :wq保存
    
    使其生效
    #source /etc/profile
    
    查看是否配置成功
    # go version
    go version go1.7.1 linux/amd64
    
    简单测试:
    # cd /mnt/wwwroot/gofile
    # vim hello.go
    package main
    import "fmt"
    func main() {
        fmt.Println("Hello,世界")
    }
    # go run hello.go
    Hello,世界
    原文链接:https://www.f2er.com/centos/379880.html

    猜你在找的CentOS相关文章