Ubuntu still works best from the terminal for many package-management jobs, but a graphical queue is faster when you want to inspect dependencies, mark several changes at once, or review package metadata before APT touches the system. That makes it easy to install Synaptic Package Manager on Ubuntu 26.04, 24.04, and 22.04 without hunting for a separate download or third-party source.
Synaptic Package Manager does not replace APT. It gives you a GTK front end for the same package database, repository metadata, and dependency handling Ubuntu already uses. That makes it useful on desktop systems where you want a visual package browser, while still keeping package updates tied to normal Ubuntu repositories.
Install Synaptic Package Manager on Ubuntu
Synaptic installs from Ubuntu’s default APT sources on every supported LTS release. The package version changes by release, but the install command stays the same and the source component remains universe.
| Ubuntu release | Synaptic package | Repository component | Notes |
|---|---|---|---|
| Ubuntu 26.04 LTS | 0.91.7build1 | Universe | Newest supported LTS |
| Ubuntu 24.04 LTS | 0.91.3build4 | Universe | Same install command |
| Ubuntu 22.04 LTS | 0.90.2build1 | Universe | Oldest supported LTS |
Synaptic comes from Ubuntu’s
universecomponent on all supported LTS releases. Onlyuniverseis required for this package. Ifaptcannot find it, follow the guide to enable Universe and Multiverse on Ubuntu, then refresh your package lists before retrying the install.
Update Ubuntu Before Installing Synaptic
Refresh the local package index and apply pending updates first so Synaptic installs against current repository metadata.
sudo apt update && sudo apt upgrade -y
These commands use
sudofor package-management tasks. If your account does not have sudo access yet, follow the guide to add a new user to sudoers on Ubuntu before continuing.
Install Synaptic from Ubuntu Repositories
Install Synaptic Package Manager on Ubuntu with the standard APT package. This keeps updates tied to Ubuntu’s normal repository workflow and avoids a separate manual download.
sudo apt install synaptic
Verify the Synaptic Package on Ubuntu
Check the installed package state with apt-cache policy. This confirms both the installed version and the repository component supplying the package.
apt-cache policy synaptic
Expected output on Ubuntu 26.04:
synaptic:
Installed: 0.91.7build1
Candidate: 0.91.7build1
Version table:
*** 0.91.7build1 500
500 http://archive.ubuntu.com/ubuntu resolute/universe amd64 Packages
100 /var/lib/dpkg/status
Ubuntu 24.04 reports 0.91.3build4, and Ubuntu 22.04 reports 0.90.2build1. In each case, the package still comes from universe.
Open Synaptic Package Manager on Ubuntu
Synaptic installs cleanly on desktop, minimal, and server images, but the application itself is a GUI program. You need an active graphical session to open it.
Open Synaptic from the Ubuntu Application Menu
Most desktop users will start Synaptic from the app menu. Search for Synaptic Package Manager, launch it, and approve the authentication prompt when Ubuntu asks for your password.

Synaptic may show a short welcome message the first time it opens. Read it once if you want the quick overview, or disable the reminder if you already know the interface.

Start Synaptic from the Terminal on Ubuntu
If you are already in a desktop session and want to start Synaptic from a terminal, use sudo synaptic. This opens the same GUI application and still depends on a working graphical session.
sudo synaptic
On a headless SSH session, the package can be installed and removed normally, but the Synaptic window itself cannot open until you log into a desktop environment.
Use Synaptic Package Manager on Ubuntu
Once Synaptic opens, the interface is still working with APT underneath. The main advantage is being able to inspect, queue, and review package actions visually before anything is applied.
Search and Install Packages in Synaptic on Ubuntu
- Click Reload before searching so Synaptic uses the latest APT package metadata.
- Use the Quick Filter box when you already know part of the package name and want faster results.
- Select a package to review its version, description, dependencies, and source before marking it for installation or removal.
- Review the pending changes dialog before applying anything so you can see which additional packages APT plans to install or remove.
- Avoid running another package manager at the same time. Let Synaptic finish before switching back to
apt, Ubuntu Software, or another front end.

Customize the Synaptic Display on Ubuntu
- Right-click the column headers to show or hide details that matter to you, such as package size, installed version, or repository source.
- Open Settings > Preferences when you want to tune package-list behavior, cleanup rules, or interface details.
- Use filters by section, status, or origin when the package list is too broad for a simple name search.
Use Synaptic to Track Changes and Fix Package Issues on Ubuntu
- Use the history view when you need to review earlier package actions or confirm what changed during a troubleshooting session.
- Click Mark All Upgrades when you want Synaptic to queue every currently available package update in one pass.
- Pay attention to the dependency prompts before you apply changes, especially when a removal would also uninstall related packages.
- Open Edit > Fix Broken Packages if a package operation was interrupted and APT needs help returning to a consistent state.

Troubleshoot Synaptic on Ubuntu
Most Ubuntu desktop installs will open Synaptic immediately after installation. Alternative desktop environments and stripped-down images are more likely to miss the authentication helper that prompts for administrative access.
Fix Synaptic Launch Problems on Ubuntu Desktops
If Synaptic starts from the menu without showing a password prompt, install the PolicyKit authentication agent that matches your desktop environment.
On LXDE, install lxpolkit:
sudo apt install lxpolkit
On MATE, install mate-polkit:
sudo apt install mate-polkit
On Cinnamon, Xfce, and Unity, install policykit-1-gnome:
sudo apt install policykit-1-gnome
On LXQt, install lxqt-policykit:
sudo apt install lxqt-policykit
After installing the correct agent, sign out of the desktop session, sign back in, and try opening Synaptic again.
Fix Missing Synaptic Package Results on Ubuntu
If sudo apt install synaptic returns Unable to locate package synaptic or apt-cache policy synaptic shows no candidate, the most common cause is a disabled universe component. Re-enable universe with the Ubuntu repository guide linked earlier, then rerun sudo apt update and check the package again.
Remove Synaptic Package Manager on Ubuntu
Remove Synaptic and its no-longer-needed dependencies in one step when you no longer want the GUI package manager installed.
sudo apt remove --autoremove -y synaptic
Verify the removal with the same package policy check. The package should no longer be installed, even though Ubuntu still offers it as an available candidate from universe.
apt-cache policy synaptic
Expected output on Ubuntu 26.04:
synaptic:
Installed: (none)
Candidate: 0.91.7build1
Version table:
0.91.7build1 500
500 http://archive.ubuntu.com/ubuntu resolute/universe amd64 Packages
100 /var/lib/dpkg/status
Synaptic did not leave standard per-user data directories in
~/.config,~/.cache,~/.local/share, or~/.var/appduring validation. To audit your own session-specific leftovers after using the application, search your home directory forsynaptic-named files before deleting anything manually.
Synaptic Package Manager on Ubuntu FAQ
Ubuntu 26.04 ships 0.91.7build1, Ubuntu 24.04 ships 0.91.3build4, and Ubuntu 22.04 ships 0.90.2build1. All three releases provide Synaptic from the universe component.
Open Synaptic Package Manager from the app menu, or run sudo synaptic from a terminal inside a graphical session. The package can be installed from a minimal or server environment, but the GUI still needs an active desktop session to display.
No. Current Ubuntu releases do not rely on gksudo for this workflow. Use the menu launcher or sudo synaptic inside a graphical session, and make sure your desktop has a working PolicyKit authentication agent if no password prompt appears.
No. Ubuntu already ships Synaptic in the universe repository, so a separate .deb download is unnecessary for supported Ubuntu LTS releases. Installing it with sudo apt install synaptic is the simplest and safest path.
Conclusion
Synaptic Package Manager is installed on Ubuntu and ready for visual package searches, dependency reviews, and queued APT changes from one window. If you want broader application sources next, install Flatpak on Ubuntu. If you prefer to stay with APT but want faster large downloads, install APT-Fast on Ubuntu.
Formatting tips for your comment
You can use basic HTML to format your comment. Useful tags currently allowed in published comments:
<code>command</code>command<strong>bold</strong><em>italic</em><blockquote>quote</blockquote>