centos 安裝go環境

2021-09-10 21:28:37 字數 811 閱讀 1906

1.  獲取對應版本go linux環境包 這裡是1.11.5

wget -c
2.  解壓包到/opt/目錄下

tar -c /opt/ -zxvf go1.11.5.linux-amd64.tar.gz
3. 配置環境變數

vim /etc/profile
寫入

# go

export goroot=/opt/go

export gopath=/var/go/gopath

export path=$path:$goroot/bin

執行

source /etc/profile
4. 檢視go版本

go version
5. 執行go程式

新建資料夾

mkdir $gopath/src/github.com/username/hello
進入

cd $gopath/src/github.com/username/hello
新建main.go檔案 寫入

package main

import "fmt"

func main()

執行

go run main.go
控制台中列印出hello,world!就成功了

Centos 安裝 Go 編譯環境

2.解壓go到 opt tar c opt zxvf go1.13.5.linux amd64.tar.gz 3.增加環境變數,編輯 etc profile 增加如下三行 export path path opt go bin export goroot opt go export gopath r...

Go環境安裝

開啟windows環境變數設定,在系統變數新增 go root 安裝目錄 path go root bin gopath 專案的絕對路徑 開啟cmd輸入 go version可檢視go安裝的版本,如果出現版本資訊,說明安裝成功 輸入go env即可檢視相關的配置資訊。開啟profile檔案 vi e...

go,環境安裝

5月初,電腦重灌系統了。現在需要重新安裝go環境,記錄下來,方便以後查詢。一 go window安裝包,預設安裝即可。2 安裝完畢,設定環境變數 系統變數,gopath,f go workspace goroot,c go go111module auto goproxy 增加f go worksp...