Linux ⏱️ 7 min read

Install Beekeeper Studio on Ubuntu: 2026 Guide

📅 April 29, 2026 👁️ 1496 WhatsApp Telegram X Facebook
Install Beekeeper Studio on Ubuntu: 2026 Guide

Install Beekeeper Studio on Ubuntu: 2026 Updated Guide

Beekeeper Studio is a modern SQL editor and database management tool that works with many databases, including PostgreSQL, MySQL/MariaDB, SQLite, SQL Server, Amazon Redshift, CockroachDB, TiDB, Google BigQuery, and Redis. As of 2026, it offers the same core experience on Linux, macOS, and Windows. With a tabbed SQL editor, autocomplete, saved queries, table data filtering, export options, query history, a dark theme, and spreadsheet-style table editing, it is a practical alternative, especially for developers. In this guide, we update the older Snap-focused installation approach and add safer methods for Ubuntu 22.04, 24.04, and 26.04 LTS.

Before starting the installation, it is a good idea to update your Ubuntu system. If you have just installed Ubuntu, refresh the package lists first and apply any pending security updates. For a fresh Ubuntu setup, you can also review the Ubuntu 26.04 LTS post-install settings guide for desktop, driver, and repository configuration.

bash sudo apt update sudo apt upgrade -y

For Ubuntu, the cleanest method is usually the official DEB repository. With this method, Beekeeper Studio is installed like a regular system application, appears in the application menu, and receives future updates through apt upgrade. Open the terminal, install the required tools first, and then add the Beekeeper Studio repository to your system.

bash sudo apt install curl gpg ca-certificates -y curl -fsSL https://deb.beekeeperstudio.io/beekeeper.key | sudo gpg --dearmor --output /usr/share/keyrings/beekeeper.gpg sudo chmod go+r /usr/share/keyrings/beekeeper.gpg echo "deb [signed-by=/usr/share/keyrings/beekeeper.gpg] https://deb.beekeeperstudio.io stable main" | sudo tee /etc/apt/sources.list.d/beekeeper-studio-app.list > /dev/null sudo apt update sudo apt install beekeeper-studio -y

When the installation is complete, you can open the app from the menu as “Beekeeper Studio” or run it directly from the terminal. Launching it from the terminal is useful on the first run because you can see messages if a missing library or permission issue appears.

bash beekeeper-studio

The AppImage method is a good option if you do not want to add a system repository. Download the latest Beekeeper Studio AppImage from the official download page and make it executable. On Ubuntu 24.04 and 26.04, if the AppImage does not open, the issue is often a missing FUSE compatibility package. In newer Ubuntu releases, the package name is usually libfuse2t64; on older versions, it may be libfuse2.

bash sudo apt install libfuse2t64 -y || sudo apt install libfuse2 -y chmod +x Beekeeper-Studio-*.AppImage ./Beekeeper-Studio-*.AppImage

Because an AppImage runs as a single file, it does not require root privileges. It is convenient for portable use and lets you try the current version without adding a repository to your system. If you want it to appear in the application menu, you can add desktop integration with a tool such as AppImageLauncher.

Snap installation is still possible and remains the shortest path for users who want a quick install through the Ubuntu Store. The older beekeeper-<version> example can now be confusing, so using the direct package name is enough. If Snap is not available on your system, install snapd first, then install Beekeeper Studio.

bash sudo apt install snapd -y sudo snap install beekeeper-studio

If you plan to connect to a database through an SSH tunnel while using the Snap version, you may need to grant an additional permission. Because of Snap’s security model, access to the .ssh directory is restricted by default. The command below gives Beekeeper Studio access to SSH keys. If you use an SSH agent, the DEB or AppImage version may be smoother.

bash sudo snap connect beekeeper-studio:ssh-keys :ssh-keys

For users who prefer Flatpak, Beekeeper Studio can be installed with the .flatpak package. However, on Ubuntu, the most reliable update experience is usually achieved with the DEB repository or AppImage. If you run into SQLite file access problems with the Flatpak package, you may need to expand the filesystem permission.

bash sudo flatpak override io.beekeeperstudio.Studio --filesystem=host

An important change to keep in mind in 2026 is the distinction between the Community and paid versions of Beekeeper Studio. The Community edition is free, can be downloaded without registration or a credit card, and is enough for most individual users working with common databases. Paid Indie, Professional, and Business plans are designed for broader database support, multi-device use, advanced features, support, and business needs. Official pricing offers separate monthly and annual billing options; annual billing shows a lower monthly equivalent for the Indie, Professional, and Business plans. Users who want to try paid features also have a 14-day trial option that does not require a credit card.

The best installation method depends on how you plan to use the app. If you will use it on a daily workstation, the DEB repository is the most sensible choice because it follows normal system updates. If you only want to test it or have limited root access on a company computer, AppImage is more convenient. If you want a one-command install from Ubuntu’s own store, Snap is fast, but it may introduce restrictions in SSH agent and some file access scenarios.

After opening the application, choose the database type from the “New Connection” screen, then enter the host, port, username, and database name. For a local PostgreSQL setup, the host is usually localhost and the port is 5432; for MySQL or MariaDB, the port is 3306; for SQL Server, it is 1433. If you are connecting to a remote server, use Beekeeper Studio’s saved connection feature and, when possible, an SSH tunnel instead of keeping passwords in plain-text notes. If your server will expose an SSH port, the basic rules in the SSH Security with UFW guide can help.

If you see the error “command not found: beekeeper-studio” after installation, first check which method you used. For a DEB installation, apt policy beekeeper-studio shows the package status. For a Snap installation, snap list beekeeper-studio does the same. If the app does not appear in the menu after installing it with Snap, signing out and back in or restarting the system may refresh the desktop shortcut.

bash apt policy beekeeper-studio snap list beekeeper-studio

If the AppImage does not open with a double-click, make sure the file has execute permission and run it from the terminal to read the error message. If you see “AppImages require FUSE to run” or an error similar to libfuse.so.2, installing the libfuse2t64 package is enough in most cases for Ubuntu 24.04 and 26.04. If the file is in the Downloads folder, run the commands from that directory.

bash cd ~/Downloads sudo apt install libfuse2t64 -y || sudo apt install libfuse2 -y chmod +x Beekeeper-Studio-*.AppImage ./Beekeeper-Studio-*.AppImage

Removing Beekeeper Studio also depends on the installation method. If you installed it through the DEB repository, you can remove the app and clean up the repository file. If you installed it with Snap, a single command is enough. If you used AppImage, deleting the downloaded .AppImage file is all you need to do.

bash sudo apt remove beekeeper-studio -y sudo rm -f /etc/apt/sources.list.d/beekeeper-studio-app.list sudo rm -f /usr/share/keyrings/beekeeper.gpg sudo apt update sudo snap remove beekeeper-studio

Beekeeper Studio remains a strong option for Ubuntu users who want a simpler experience than heavy, complex database tools. For managing local PostgreSQL or MySQL on a development machine, connecting to a remote database through an SSH tunnel, quickly opening SQLite files, or organizing queries in tabs, the most practical approach is to start with the DEB installation and try AppImage or Snap later if your workflow calls for it.



Related Posts

See all →

Comments

0 comments
No comments yet. Be the first to comment. 🙂

Leave a comment

Comments are published after approval.
Captcha image