Go: Difference between revisions
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="bash"> cat << EXE | sudo bash apt-get update;echo apt list -a --upgradable apt-get install -y golang-go EXE </syntaxhighlight> == References== {| |valign="top"| * [https://medium.com/hprog99/getting-started-with-go-installation-setup-and-your-first-hello-world-program-fbfe940afae7 Go » Getting Started] * [https://github.com/fission/examples/tree/master/go Go » K8s » Fission] * [https://go.dev/doc/install Go » Install] * [https://go.dev/ Go] |...") |
No edit summary |
||
Line 3: | Line 3: | ||
apt-get update;echo | apt-get update;echo | ||
apt list -a --upgradable | apt list -a --upgradable | ||
apt-get install -y golang-go | apt-get install -y golang-1.23-go | ||
EXE | EXE | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 10: | Line 10: | ||
{| | {| | ||
|valign="top"| | |valign="top"| | ||
* [https://gist.github.com/ReSearchITEng/a7e9202131118a321b33afe2e2c663fc Go » Update Alternatives » Ubuntu] | |||
* [https://gist.github.com/bench/a61a7d376ac49761b27a Go » Update Alternatives » Alpine] | |||
* [https://medium.com/hprog99/getting-started-with-go-installation-setup-and-your-first-hello-world-program-fbfe940afae7 Go » Getting Started] | * [https://medium.com/hprog99/getting-started-with-go-installation-setup-and-your-first-hello-world-program-fbfe940afae7 Go » Getting Started] | ||
* [https://github.com/fission/examples/tree/master/go Go » K8s » Fission] | * [https://github.com/fission/examples/tree/master/go Go » K8s » Fission] |
Revision as of 10:33, 25 November 2024
cat << EXE | sudo bash
apt-get update;echo
apt list -a --upgradable
apt-get install -y golang-1.23-go
EXE
References
| ||