This article explains how to install Telegram on Ubuntu 24.04.
Telegram is a messaging app known for its speed, security, and user-friendly interface that allows users to send messages, photos, videos, and files of any type and create groups and channels for broadcasting messages to large audiences.
Telegram emphasizes privacy and encryption, making it a popular choice among users looking for secure communication. It works on multiple platforms, including mobile devices and desktops, allowing you to connect across different devices seamlessly.
Telegram’s end-to-end encryption for secret chats and self-destructing messages provides users a high level of security for their conversations.
You can install Telegram on Ubuntu via the Snap Store or download the official package from the Telegram website.
There are multiple ways to install Telegram on Ubuntu Linux. The steps below walk you through installing the app on your Ubuntu machine.
Install Telegram from Ubuntu repositories
The quickest way to install Telegram is from Ubuntu’s default repositories. However, the version you install might not necessarily be the latest.
To install Telegram, run the command below to update Ubuntu’s package index.
sudo apt update && sudo apt upgrade
Then, run the command below to install Telegram.
sudo apt install telegram-desktop
After installing, click on Activities in the top left corner of your screen. Select Show Applications.
Search for Telegram in the application list or use the search bar. Click on the Telegram icon to launch the application.

Start using Telegram.
Install Telegram from PPA
Another way to install Telegram is to add a personal PPA from the “atareao-team” and install it from there.
First, run the command below to add the PPA repository to Ubuntu.
sudo add-apt-repository ppa:atareao/telegram
Then, upgrade Ubuntu and install Telegram.
sudo apt update
sudo apt install telegram
Once installed, launch the app from the Ubuntu apps dashboard.
Install Telegram from Flatpak
If you prefer apps from Flatpak, you can install Telegram from there.
Flatpak uses a sandboxing package installation, enhancing security and allowing easy updates. Flatpak is a third-party application distribution system not included in Ubuntu by default.
You must install the Flatpak package manager and then install the Telegram app.
First, update and install Flatpak.
sudo apt update && sudo apt upgrade
sudo apt install flatpak
Next, add the Flatpak repository to Ubuntu.
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Finally, install Telegram.
flatpak install flathub org.telegram.desktop
Once installed, you can launch it using the command below or open the app in the desktop apps center.
flatpak run org.telegram.desktop
Uninstall the app using the command below.
flatpak remove --delete-data org.telegram.desktop
Install Telegram from Snap
Another way to install Telegram is to use the Snap package manager.
To do that, install the Snap package manager if it’s not already installed.
sudo apt install snapd
Next, install core Snap by running the command below.
sudo snap install core
Then, run the command below to install Telegram from the Snap package manager.
sudo snap install telegram-desktop
Once installed, use the Dock on the left sidebar to search and launch the Telegram app.
You can also run the app using the command below.
snap run telegram-desktop
Remove the app using the command below.
sudo snap remove telegram-desktop
That should do it!
Conclusion:
In summary, installing Telegram on Ubuntu 24.04 can be accomplished through various methods, each catering to different user preferences and needs. Here are the key points to remember:
- Multiple Installation Options: You can install Telegram from default repositories, PPA, Flatpak, or Snap based on your comfort with different package management systems.
- User-Friendly Interface: Telegram offers a seamless experience across devices, ensuring your messages and media are easily accessible.
- Privacy and Security: The app provides end-to-end encryption for secret chats, making it a secure choice for private communications.
- Easy Updates: Package managers like Flatpak or Snap can simplify the application update process.
- Accessibility: Simple commands allow for quick installation or removal of the app, making it convenient for users to manage their applications.
With these options, you can start enjoying the features Telegram offers on your Ubuntu system!
Leave a Reply