diff --git a/INSTALLATION.md b/INSTALLATION.md index 5673a691..3081ef2e 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -85,3 +85,32 @@ sudo yum localinstall ./apidash-.rpm ``` Launch API Dash via `apidash` command or by clicking on the API Dash app icon. + +### Arch-based Linux Distributions (Manjaro, Arch Linux, etc.) + +Download the `.deb` file from the [latest release](https://github.com/foss42/apidash/releases/latest) corresponding to your CPU architecture (x86_64/amd64 or arm64/aarch64). + +First we have to convert the .deb file to .tar.xz file using the following commands. + +1. Install debtap using the following command. + ``` + yay -S debtap + ``` + +2. Initialize `debtap` using the following command. + ``` + sudo debtap -u + ``` + +3. Convert the .deb file to .tar.xz file using the following command. + ``` + sudo debtap /path/to/apidash-.deb + ``` +4. Once converted, install the resulting .tar.xz file using the following command. + ``` + sudo pacman -U apidash-.tar.xz + ``` + +Note: Replace `/path/to/apidash-.deb` with the path to the downloaded .deb file. + +Launch API Dash via `apidash` command or by clicking on the API Dash app icon.