Centos 安裝 Go 編譯環境

1.下載go(最新版列表 https://studygolang.com/dl)linux

wget -c https://studygolang.com/dl/golang/go1.13.5.linux-amd64.tar.gz

 

2.解壓go到 /opt/golang

tar -C /opt/ -zxvf go1.13.5.linux-amd64.tar.gz

 

3.增長環境變量,編輯 /etc/profile 增長以下三行spa

export PATH=$PATH:/opt/go/bin export GOROOT=/opt/go export GOPATH=/root/project #項目代碼所在目錄,建議編譯以前手動創建一個 /root/project

 

4.刷新環境變量code

source /etc/profile

 

5.產看版本blog

go version

 

6.安裝gcc編譯器(根據要要編譯的項目可選)get

yum install gcc
相關文章
相關標籤/搜索