Ubuntu - 원하는 golang 버전 설치
Ubuntu 22.04에 설치되는 기본 go 버전은,
$ sudo apt install golang-go
$ go version
go version go1.18.1 linux/amd64
1.18입니다. 물론, 최신 버전을 설치할 수 있는데요,
How to update the Go version
; https://gist.github.com/nikhita/432436d570b89cab172dcf2894465753
일단 현재 버전의 go를 제거하고,
$ sudo apt remove golang-go
이후 아래의 릴리스 경로에서,
All releases
; https://go.dev/dl/
원하는 버전을 다운로드합니다. (여기서는 1.23을 선택했습니다.)
go1.23.2.linux-amd64.tar.gz
; https://go.dev/dl/go1.23.2.linux-amd64.tar.gz
$ wget https://go.dev/dl/go1.23.2.linux-amd64.tar.gz
이후 그냥 저 파일을 원하는 디렉터리에 압축 해제하면 됩니다.
$ sudo tar -C /usr/local -xzf ./go1.23.2.linux-amd64.tar.gz
$ /usr/local/go/bin/go version
go version go1.23.2 linux/amd64
편의상 /usr/local/go/bin 디렉터리를 PATH에 추가하거나, 아니면 링크를 걸어주면 됩니다.
$ sudo ln -s /usr/local/go/bin/go /usr/bin/go
참고로, apt 패키지 관리자 말고 snap으로 하면 현재 1.23 버전을 설치할 수 있습니다.
$ go
Command 'go' not found, but can be installed with:
sudo snap install go # version 1.23.2, or
sudo apt install golang-go # version 2:1.18~0ubuntu2
sudo apt install gccgo-go # version 2:1.18~0ubuntu2
$ sudo apt remove golang-go
$ sudo snap install go
error: This revision of snap "go" was published using classic confinement and thus may perform
arbitrary system changes outside of the security sandbox that snaps are usually confined to,
which may put your system at risk.
If you understand and want to proceed repeat the command including --classic.
$ sudo snap install go --classic
$ go version
go version go1.23.2 linux/amd64
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]