How to Install FPM on Elementary OS Latest
FPM (Effing Package Manager) is a package building tool for Ruby, Python, Node.js, and more. Here's how to install FPM on Elementary OS Latest.
Prerequisites
Before you begin, ensure the following:
- You have elementary OS Latest installed on your system
- You have permission to install packages on your system
- You have a terminal open on your system
Installation
- Open the terminal on your system.
- Install the prerequisites for FPM:
sudo apt update sudo apt install ruby ruby-dev rubygems build-essential - Install FPM by running the following command:
sudo gem install fpm - Verify the installation by running the following command:
This will output the version number of FPM, verifying that the installation was successful.fpm --version
Congratulations! You have successfully installed FPM on Elementary OS Latest. You can now use FPM to build packages for Ruby, Python, Node.js, and more.