// Download TermStudio

TermStudio v1.0.0 is the first stable release. Choose the package format that matches your Linux distribution. All packages are free and open source under the MIT License.

LATEST STABLE v1.0.0 Released 2024  |  MIT License  |  Linux x86_64

Download Packages

Debian Ubuntu

Debian / Ubuntu

For Debian-based distributions

Compatible distros:
  • Debian 10, 11, 12
  • Ubuntu 18.04, 20.04, 22.04, 24.04 LTS
  • Linux Mint 20, 21
  • Pop!_OS 20.04+
  • Elementary OS 6+
  • Kali Linux
  • All Debian-based distros
Filenametermstudio_1.0.0-1_all.deb
Version1.0.0-1
Architectureall (noarch)
Format.deb (Debian Package)
Install command:
sudo dpkg -i termstudio_1.0.0-1_all.deb
sudo apt-get install -f
⬇ Download .deb Package
Fedora Arch Linux

Red Hat / Fedora

For RPM-based distributions

Compatible distros:
  • Red Hat Enterprise Linux (RHEL) 7, 8, 9
  • Fedora 36, 37, 38, 39, 40
  • CentOS 7, CentOS Stream 8/9
  • AlmaLinux 8, 9
  • Rocky Linux 8, 9
  • openSUSE Leap / Tumbleweed
  • All RPM-based distros
Filenametermstudio-1.0.0-1.noarch.rpm
Version1.0.0-1
Architecturenoarch
Format.rpm (RPM Package)
Install command:
# Fedora / RHEL 8+
sudo dnf install termstudio-1.0.0-1.noarch.rpm
# RHEL 7 / CentOS 7
sudo rpm -ivh termstudio-1.0.0-1.noarch.rpm
⬇ Download .rpm Package
Linux

Source Code

Build from source — any Linux distro

Build requirements:
  • Any Linux distribution
  • GCC 7.0+ or Clang 6.0+
  • GNU Make 4.0+
  • Autoconf / Automake
  • Standard C library (glibc)
  • Git (optional, for cloning)
Filenametermstudio-1.0.0.tar.gz
Version1.0.0
Architecturesource (any)
Format.tar.gz (Compressed Tarball)
Build commands:
tar -xzf termstudio-1.0.0.tar.gz
cd termstudio-1.0.0
./configure
make
sudo make install
⬇ Download Source (.tar.gz)

// Verify Your Download

After downloading, verify the file integrity using sha256sum:

# Check the SHA256 hash of your downloaded file
sha256sum termstudio_1.0.0-1_all.deb
sha256sum termstudio-1.0.0-1.noarch.rpm
sha256sum termstudio-1.0.0.tar.gz

# Compare with the official checksums listed above
# All hashes should match. If they don't, re-download.

// Installation Troubleshooting

Missing Dependencies (.deb)

sudo apt-get install -f

Run this after dpkg -i to automatically resolve and install any missing dependencies.

Missing Dependencies (.rpm)

sudo dnf install --allowerasing termstudio-1.0.0-1.noarch.rpm

Use dnf instead of rpm to handle dependency resolution automatically.

Build Errors (Source)

sudo apt install build-essential autoconf
# or
sudo dnf groupinstall "Development Tools"

Ensure build tools are installed before compiling from source.

← Back to Home