How to Install RubyGems on Linux? Last Updated : 16 Dec, 2021 Comments Improve Suggest changes Like Article Like Report RubyGems is a service for hosting gems of Ruby's community. You can publish your own gem and host it on RubyGems. In this article, we will look into the process of installing RubyGems on a Linux system. Installing RubyGems on Linux: RubyGems can be downloaded from its official website and can be installed with the help of the following steps: Step 1: In order to install RubyGems, first we need to install ruby on Linux. Run the following command on the terminal to install ruby. sudo apt install ruby Step 2: Go to the RubyGems download page and click on the zip button, this will download the zip through which you can install RubyGems. Step 3: After Downloading the package, Open the folder where the zip file is located and unzip it by extracting its content, After Extracting move to the folder and open the folder on the terminal by clicking the right-click and tapping on "Open in Terminal". Extracted Content of downloaded zip file Step 4: In the Terminal run the following command: sudo ruby setup.rb To verify the installation run the following command to check the RubyGems version gem --versionCommand to check RubyGem's Version Comment More infoAdvertise with us Next Article How to Install PHP on Linux? A aniruddhashriwant Follow Improve Article Tags : Installation Guide how-to-install Similar Reads How to Install RubyGems on MacOS? Ruby is a high-level and open-source programming language. It is very useful in many aspects. Like other programming languages, Ruby is nowadays a highly useful programming language. In Ruby, there is a package manager available which is known as Gems. It is easily distributed and provides libraries 2 min read How to Install ruby bundler on Linux? Bundler ensures that Ruby projects have a consistent environment by monitoring and installing the precise gems and versions required. Bundler helps you get out of dependency hell by ensuring that the gems you require are in development, staging, and production. Bundle install is all it takes to get 1 min read How to Install SQLite3 for Ruby on Linux? SQLite is a zero-configured database in which the configuration is not required in the system. The SQLite library has a SQL database engine that is self-contained, serverless, and transactional. It is written in ANSI-C and the API that it provides is very easy to use. It was originally made in augus 2 min read How to Install PHP on Linux? PHP is a popular server-side scripting language that is especially used in web development. If you're working on a Linux environment, whether it's a personal development setup or a production server, you will likely need PHP installed. In this article, we will see the step-by-step guide to install P 2 min read How to Install Ruby on Termux? Ruby is an open-source programming language. It can be installed in any operating system. It is an interpreted, high-level object-oriented programming language. It was first implemented in the mid-1990s in Japan. It was developed & designed by Yukihiro "Martz" Matsumoto. The developer wants a pr 2 min read How to Install RPM Packages on Linux? Red Hat Package Manager or RPM is a free and open-source package management system for Linux. The RPM files use the .rpm file format. Â RPM package manager was created to use with Red Hat Linux, but now it is supported by multiple Linux distributions such as Fedora, OpenSUSE, Ubuntu, etc.RPM packages 3 min read Like