go: ubuntu安裝go 1.23.3

刘宏缔的架构森林發表於2024-11-09

一,下載

官網:

https://go.dev/

從首頁進入到下載頁面:

如圖:

go: ubuntu安裝go 1.23.3

選擇適合自己系統的版本

複製下載地址,從命令列下載

$ wget https://go.dev/dl/go1.23.3.linux-amd64.tar.gz

二,安裝

1,解壓:

$ tar -zxvf go1.23.3.linux-amd64.tar.gz 

移動到安裝目錄:

$ mv go /usr/local/soft/

2,配置環境:

$ vi /etc/profile

內容:

export GOROOT=/usr/local/soft/go
export GOPATH=/data/gopath
export PATH=$PATH:$GOROOT/bin

使生效:

$ source /etc/profile

3,檢視安裝效果:

$ go version
go version go1.23.3 linux/amd64

三,測試編寫一段程式碼

1,編寫程式碼

$ vi hello.go

程式碼內容:

package main

import "fmt"

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

2,編譯執行:

$ go build hello.go
$ ls
hello  hello.go
$ ./hello 
hello,go world

相關文章