Install Package Based on Distros
Depending on the Linux distribution you are using, it will have a different Linux package manager. Here's a quick list of each package manager for popular distributions.
https://en.wikipedia.org/wiki/List_of_Linux_distributions
Debian Based
Example
Debian, Ubuntu, Linux Mint
Package Format: .deb
sudo apt update: Updates the package index.
sudo apt upgrade: Upgrades all installed packages to their latest versions.
sudo apt install <package_name>: Installs a package.
sudo apt remove <package_name>: Removes a package.
sudo apt autoremove: Removes unnecessary packages.
Backend: dpkg (Debian Package) is the low-level tool that APT uses to handle .deb files.
dpkg -i <package.deb>: Installs a package file.
dpkg -r <package_name>: Removes a package.
dpkg -l: Lists all installed packages