Published on: Mon Mar 02 2026
Author - Himanshu Sharma
How to Install TablePlus on Debian

If you’re a developer or database enthusiast, TablePlus is one of the best database GUI clients available. It supports MySQL, PostgreSQL, SQLite, Redis, and many more, providing a sleek and intuitive interface for database management. In this guide, we’ll show you how to install TablePlus on Debian Linux.
Method 1: Install TablePlus Using the Official Repository
Installing via the official repository ensures you receive updates automatically through Debian’s package manager.
Step 1: Install Required Packages
Debian does not include some tools by default. Run:
sudo apt update
sudo apt install software-properties-common gnupg2 curl -yStep 2: Add TablePlus Repository
Add the official TablePlus repository to your system:
echo "deb [arch=amd64] https://deb.tableplus.com/debian/24 tableplus main" | sudo tee /etc/apt/sources.list.d/tableplus.listStep 3: Add GPG Key
To verify packages from the repo, add the TablePlus GPG key:
curl -fsSL https://deb.tableplus.com/apt.tableplus.com.gpg.key | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/tableplus.gpgStep 4: Install TablePlus
Finally, install TablePlus with:
sudo apt update
sudo apt install tableplus -y