How to Install Go Language in Manjaro Linux? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Manjaro is a free open-source Linux distribution based on the Arch Linux operating system. Its features include a highly customizable GUI with a powerful command-line user interface. Golang is a procedural and statically typed programming language similar to the C programming language. It provides a rich standard library, garbage collection, and dynamic-typing capability. To know more please visit Golang Tutorial. Let's discuss how to install the Golang Programming Language in Manjaro Linux. We will also see how to use the Golang compiler to build and run a go file. Installation of Go Language in Manjaro Linux Step 1: Update your system by running $ sudo pacman -Syu Step 2: Now, install Golang using Pacman $ sudo pacman -S go Step 3: Verify the installation $ go version Usage A very basic go file is created that outputs "Geeks for Geeks". Go package main import "fmt" func main() { fmt.Println("Geeks For Geeks") } Now, build the executable file using the build command. $ go build gfg.go $ ./gfg Comment More infoAdvertise with us Next Article How to Install Manjaro Linux? A ahampriyanshu Follow Improve Article Tags : How To Installation Guide how-to-install Similar Reads How to Install Go Programming Language in Linux? In this article, we will discuss how to install GoLang (Go Programming Language) in Linux. But at first let's know a brief about GoLang. GoLang is a procedural programming language. It was developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google but launched in 2009 as an open-sou 2 min read How to Install Manjaro Linux? Manjaro Linux is an arch-based Linux, with all the features that provide a good user interface, all other tasks that are done on the other Linux via the command-line user interface, you can use it as a graphical user interface. Manjaro is a free open-source Linux distribution based on the Arch Linux 4 min read How to install Ruby Programming Language on Manjaro Linux? Ruby is an open-source, dynamic, cross-platform, object-oriented, general-purpose programming language. It was developed by Yukihiro Matsumoto in the mid-1990s in Japan. Everything in Ruby is an object except the blocks but there are replacements for those as well, i.e procs and lambda. The language 1 min read How to Install Go in Alpine Linux? Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write microservices, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time 1 min read How to Install Fonts on Linux? Are you looking to customize the appearance of your Linux system by adding new fonts? Whether you're a designer, developer, or just someone who enjoys personalization, installing custom fonts can enhance your Linux experience. In this guide, we will provide a step-by-step tutorial on how to install 3 min read How to Install PyGObject in Linux? PyGObject is a Python extension module that will deliver you clean and consistent access to the complete GNOME software platform with the use of GObject Introspection. PyGObject will deliver full support of GObject Introspection and all of its features (callbacks, GVariant support, closures, sub-cla 2 min read Like