Go: Difference between revisions
Jump to navigation
Jump to search
Line 60: | Line 60: | ||
* [https://go.dev/doc/install Go » Install] | * [https://go.dev/doc/install Go » Install] | ||
* [https://go.dev/ Go] | * [https://go.dev/ Go] | ||
|valign="top"| | |||
|valign="top"| | |||
|- | |||
|colspan="3"| | |||
---- | |||
|- | |||
|valign="top"| | |||
* [[Helm/PostgreSQL|Helm » PostgreSQL]] | |||
* [[Helm/MariaDB|Helm » MariaDB]] | |||
* [[Helm/Fission|Helm » Fission]] | |||
* [[Helm/GitLab|Helm » GitLab]] | |||
* [[Helm/MinIO|Helm » MinIO]] | |||
* [[Helm/Keda|Helm » Keda]] | |||
* [[Helm]] | |||
|valign="top"| | |valign="top"| |
Revision as of 11:06, 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
| ||
| ||