In order to install Golang (Go Language) on Ubuntu, follow the below steps:
- Open Linux Terminal,
- Now type apt-get update (or sudo apt-get update)
- To install Golang type command:
# apt-get install golang-go
- To check if Go was installed correctly, we can try to check the version command,
# go version go version go1.18.1 Linux/arm64
- Congratulations! You are ready to Go :)

Do let me know as a comment if you faced any issues while installing Go, I am happy to help!
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Ubuntu,
- Install Oh My Zsh on Ubuntu Docker complete steps
- Installing Home-brew on Ubuntu
- Install Golang (Go) on Ubuntu
- Install specific JRE on Ubuntu using apt
- How to stop/start/restart apache server using command [Ubuntu]
- How to install zsh shell on Ubuntu
- Quick steps to install Nginx on Ubuntu Linux
- How to know current Ubuntu Linux version via terminal command
- Add new user in Ubuntu Linux using Terminal Command
- Fix Ubuntu /bin/sh: 1: zsh: not found error
- How to install Python on Ubuntu
- [Fix] Ubuntu E: Unable to locate package sudo error
- How to stop MongoDB Server running on Ubuntu
- Install postgres Client using apt-get command
- How to kill service running on a port on Ubuntu Linux
- [fix] openssl No such file or directory error C++
- Fix - sudo: systemctl: command not found
- Access Windows share folder in Ubuntu Device in Network
- Add or remove users from sudo group - Ubuntu
- Quickly install Apache Server on Ubuntu Linux
- Fix: Ubuntu (Linux) - bash: sudo: command not found error
More Posts:
- How to Change AWS Default Region using CLI - AWS
- Mac OS X Error: Could not create the Java Virtual Machine - Mac-OS-X
- cURL -x Use of HTTP Proxy Server Examples - cURL
- Java Join Strings with Comma Separator - Java
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python] - Python
- Fix Maven: Could not find artifact in central - Java
- [IRCTC] Indian railways official eRail API 1.1 for developers to get train info - HowTos
- Define an Infinite Number in Python - Python