This document provides step-by-step installation instructions for the desktop application, which is available for both Windows and Linux operating systems.
Windows Installation (NSIS .zip file)
- Download the Installer:
- Obtain the Windows zip file from the downloads page on the website.
- Extract the Files:
- Right-click on the downloaded .zip file and select Extract All.
- Choose a destination folder where you want to extract the files.
- Run the Installer:
- Navigate to the extracted folder.
- Double-click on the file ending in
setup.exe
file to launch the installer.
- Follow Installation Prompts:
- Follow the on-screen instructions to complete the installation.
- Choose your preferred installation path or accept the default location.
- Finish Installation:
- Once the installation is complete, you can launch the application from your Start Menu or desktop shortcut.
Linux Installation
The application is available in three formats for Linux: .deb, .rpm, and AppImage. Follow the instructions corresponding to your distribution.
For Debian/Ubuntu (.deb)
- Download the .deb File:
- Obtain the deb zip file from the downloads page on the website.
- Unzip:
-
Open a terminal and navigate to the directory where you downloaded the file.
-
Run the following command to unzip the file.
tar -xf name-of-application.tar.xz
- Install using dpkg:
-
Go to the extracted folder and run:
sudo dpkg -i name-of-application.deb
If there are dependency issues, resolve them by running:
sudo apt-get install -f
For Red Hat/Fedora (.rpm)
- Download the .rpm File:
- Obtain the rpm zip file from the downloads page on the website.
- Unzip:
-
Open a terminal and go to the directory of your downloaded file.
-
Run the following command to unzip the file.
tar -xf name-of-application.tar.xz
- Install app:
- Go to the extracted folder and run:
sudo rpm -i name-of-application.rpm
For AppImage
- Download the AppImage File:
- Obtain the AppImage zip file from the downloads page on the website.
- Unzip:
-
Open a terminal and go to the directory of your downloaded file.
-
Run the following command to unzip the file.
tar -xf name-of-application.tar.xz
- Make it Executable:
-
Go to the extracted folder and run:
chmod +x your_application.AppImage
- Run the Application:
-
You can now run it by executing:
./name-of-application.AppImage
Conclusion
After following these steps, your desktop application should be successfully installed on either Windows or Linux systems. For any issues during installation, please contact use via the contact us page for assistance.