Go: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 32: Line 32:


| valign="top" |
| valign="top" |
<syntaxhighlight lang="bash">
go version $(which gofmt)
go version
which go
</syntaxhighlight>


|-
|-

Revision as of 11:02, 25 November 2024

cat << EXE | sudo bash
apt-get update;echo
apt list -a --upgradable
apt-get install -y golang-1.23-go
EXE

cat << EXE | sudo bash
update-alternatives --install /usr/local/bin/go go /usr/lib/go-1.23/bin/go 1983
update-alternatives --install /usr/local/bin/gofmt gofmt /usr/lib/go-1.23/bin/gofmt 1983
EXE

export GOPATH=/usr/lib/go-1.23
export PATH=$PATH:$GOPATH/bin

Playground

sudo apt purge -y golang-go
apt info golang-1.23-go
apt search golang-go
sudo update-alternatives --config go
update-alternatives --query gofmt
update-alternatives --query go
go version $(which gofmt)
go version
which go

References