Installation

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)

  1. Download the Installer:
  1. 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.
  1. Run the Installer:
  • Navigate to the extracted folder.
  • Double-click on the file ending in setup.exe file to launch the installer.
  1. Follow Installation Prompts:
  • Follow the on-screen instructions to complete the installation.
  • Choose your preferred installation path or accept the default location.
  1. 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)

  1. Download the .deb File:
  1. 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
    
  1. 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)

  1. Download the .rpm File:
  1. 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
    
  1. Install app:
  • Go to the extracted folder and run:
    sudo rpm -i name-of-application.rpm
    

For AppImage

  1. Download the AppImage File:
  1. 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
    
  1. Make it Executable:
  • Go to the extracted folder and run:

    chmod +x your_application.AppImage
    
  1. 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.