Detailed Installation Guide

// Debian / Ubuntu Installation

To install TermStudio on Debian-based systems, download the official .deb package and run the standard package manager:

wget https://termstudio.pages.dev/software/termstudio_1.0.0-1_all.deb
sudo dpkg -i termstudio_1.0.0-1_all.deb
sudo apt-get install -f

💡 DEBIAN REPOSITORIES

Running apt-get install -f fixes any missing dependencies like python3-textual or ncurses library bindings.

// Red Hat / Fedora Installation

For systems using RPM, use the dnf or rpm command to install the package:

wget https://termstudio.pages.dev/software/termstudio-1.0.0-1.noarch.rpm
sudo dnf install termstudio-1.0.0-1.noarch.rpm

// Arch Linux AUR Installation

TermStudio is available via the AUR (Arch User Repository). You can install it using an AUR helper like yay:

yay -S termstudio

// Compiling from Source

If you wish to compile the binaries yourself, clone the repository, run the configure script, and compile:

tar -xzf termstudio-1.0.0.tar.gz
cd termstudio-1.0.0
./configure
make
sudo make install