How to install Ruby Programming Language on Manjaro Linux? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report 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 is based on many other languages, such as Perl, Lisp, Smalltalk, Eiffel, and Ada. To know more please visit Ruby Tutorial. Let’s discuss how to install the Ruby Programming Language in Manjaro Linux. We will also see how to use the ruby compiler to execute a ruby script. Installation of Ruby Language in Manjaro Linux Step 1: Update and upgrade your system. $ sudo pacman -Syu Step 2: Now, install Ruby using Pacman. $ sudo pacman -S ruby Step 3: Confirm if Ruby was installed correctly. $ ruby -v Step 4: We will now create a simple ruby program that outputs Geeks for Geeks. Ruby puts "Geeks For Geeks" Step 5: Finally, compile the newly created ruby file. $ ruby test.rb Comment More infoAdvertise with us Next Article How to Install Manjaro Linux? A ahampriyanshu Follow Improve Article Tags : 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 Ruby Programming Language on Godaddy Server? GoDaddy VPS is a shared server that provides computational services, databases, storage space, automated weekly backups, 99% uptime, and much more. Itâs a cheaper alternative to some other popular cloud-based services such as AWS, GPC, and Azure. Ruby is an open-source, dynamic, cross-platform, obje 2 min read How to Install Go Language in Manjaro Linux? 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 1 min read How to Install Ruby on Rails on MacOS? Ruby on Rails, also known as rails, is a server-side web application development framework written in the Ruby programming language. David Heinemeier Hansson developed it under the MIT License. It supports MVC (model-view-controller) architecture that provides a default structure for databases, web 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 on Rails on Windows and Linux? Ruby on Rails or just known as rails, is free and open-source software written in Ruby language under the MIT license. It is a server-side web application development framework, designed to make programming web applications easier by making assumptions about what every developer needs to get started 2 min read Like