Golang學習系列第一天:安裝golang

 

0.  ssh鏈接linux(我用的centos7),略

1.  golang下載

因爲Golang官網https://golang.org/國內沒法直接訪問,故能夠到Go語言中文網下載:https://studygolang.com/dl,可根據本身的電腦操做系統下載對應的版本,我下載的是go1.14.4.linux-amd64.tar.gz最新(當前時間)安裝包,不過也能夠直接點擊下面這個連接直接下載https://dl.google.com/go/go1.14.4.linux-amd64.tar.gz,即linux

[root@master dgm]# wget https://dl.google.com/go/go1.14.4.linux-amd64.tar.gz

2.  golang安裝

     解壓golang壓縮文件golang

[root@master dgm]# tar -zxvf go1.14.4.linux-amd64.tar.gz

配置環境變量,編輯/etc/profile文件,即vim  /etc/profilevim

追加如下內容:windows

golang配置

保存該配置文件centos

而後重載配置 source /etc/profile 使之生效bash

最後查看是否生效dom

go version

  go版本檢查

3.  helloworld測試

新建hello.go文件ssh

touch hello.go

而後編輯該hello.go文件,鍵入如下內容ide

package main

import "fmt"

func main() {
    fmt.Printf("hello,world!\n")
}

退出保存測試

而後在命令行執行go run hello.go,能夠看到以下結果

 

 helloworld

參考:

  1. https://gomirrors.org/
  2. https://studygolang.com/dl
  3. CentOS7安裝golang1.6環境  http://www.javashuo.com/article/p-yqhqvian-gm.html

  4. 你不再用設置 GOROOT 了  https://zhuanlan.zhihu.com/p/93776289

  5. Golang 1.13: 解決國內 go get 沒法下載的問題  https://www.sunzhongwei.com/problem-of-domestic-go-get-unable-to-download

  6. https://goproxy.io/zh/
  7. Golang Guide: A List of Top Golang Frameworks, IDEs, and Tools  https://dzone.com/articles/golang-guide-a-list-of-top-golang-frameworks-ides
相關文章
相關標籤/搜索