Install Go on Ubuntu 24.04

Using apt or snap, we'll discover how to install Go natively on Ubuntu 24.04.

Using APT:

sudo apt install golang-go
root@ubuntu:~# go version
go version go1.22.0 linux/amd64

Using snap:

sudo snap install go --classic
go 1.23.4 from Canonical✓ installed

note: we need to add the "--classic" argument to accept the classic confinement, snap usually isolates each app except when you use this argument.