From d5ef9eef079302285e538ac84d30df1c591d1912 Mon Sep 17 00:00:00 2001 From: Ankit Mahato Date: Thu, 4 May 2023 22:42:59 +0530 Subject: [PATCH] Update INSTALLATION.md --- INSTALLATION.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/INSTALLATION.md b/INSTALLATION.md index a6cd8f1b..cb7d8034 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -42,4 +42,46 @@ Note: The next step has to be performed twice so that macOS adds the app to whit **Step 10** - This process has to be followed only once and from the next time you can directly launch the API Dash App from the Launchpad. +## Linux +### Debian-based Linux Distributions (Debian, Ubuntu, Linux Mint, etc.) + +Download the `.deb` file from the latest release (link) corresponding to you CPU architecture (x64/amd64 or arm64). + +`cd` to the Downloads folder and execute the following command to install API Dash. + +``` +sudo apt install ./apidash-.deb +``` + +or + +``` +sudo dpkg -i apidash-.deb +``` + +Launch API Dash via `apidash` command or by clicking on the API Dash app icon. + +### Red Hat-based Linux Distributions (Fedora, Rocky, AlmaLinux, CentOS, RHEL, etc.) + +Download the `.rpm` file from the latest release (link) corresponding to you CPU architecture (x86_64 or aarch64/arm64). + +`cd` to the Downloads folder and execute the following command to install API Dash. + +``` +sudo dnf localinstall ./apidash-.rpm +``` + +or + +``` +sudo rpm -i apidash-.rpm +``` + +or + +``` +sudo yum localinstall ./apidash-.rpm +``` + +Launch API Dash via `apidash` command or by clicking on the API Dash app icon.