How to install Sublime Text on Ubuntu 24.04

In this guide, we'll walk you through the process of installing Sublime Text on Ubuntu 24.04. Sublime Text is a sophisticated text editor for code, markup, and prose. It's known for its speed, ease of use, and powerful features that cater to developers and writers alike.

Why Sublime Text?

Sublime Text offers several advantages that make it a popular choice among developers:

  • Fast and responsive, even when working with large files
  • Highly customizable with a wide range of plugins and themes
  • Multi-select editing for efficient code manipulation
  • Distraction-free writing mode for focused work
  • Cross-platform compatibility (Windows, macOS, and Linux)

Installation Process

The installation process involves a few steps to ensure we add the official Sublime Text repository to our system. This method ensures we get the latest updates directly from the developers. Here's a breakdown of what we'll do:

  1. Download and add the Sublime Text GPG key for package verification
  2. Install the required package for HTTPS repository support
  3. Add the Sublime Text repository to our system
  4. Update the system's package lists
  5. Install Sublime Text

Step-by-Step Installation Commands

Follow these commands in your terminal to install Sublime Text:


1) wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
2) sudo apt install apt-transport-https
3) echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
4) sudo apt update
5) sudo apt install sublime-text
    

Let's break down these commands:

  1. Downloads the Sublime Text GPG key and adds it to your system's trusted keys.
  2. Installs the 'apt-transport-https' package, which allows the use of repositories over HTTPS.
  3. Adds the official Sublime Text repository to your system's software sources.
  4. Updates your system's package lists to include the newly added repository.
  5. Installs Sublime Text from the official repository.

Post-Installation

After installation, you can launch Sublime Text from your applications menu or by typing 'subl' in the terminal. Consider exploring the various plugins and themes available to customize your Sublime Text experience.

Troubleshooting Tips

If you encounter any issues during installation, try these steps:

  • Ensure your system is up to date with 'sudo apt update && sudo apt upgrade'
  • Check your internet connection if downloads fail
  • Verify that you have sufficient permissions (you may need to use 'sudo' for some commands)
  • If the GPG key addition fails, try downloading it manually and importing it with 'sudo apt-key add'

Video Tutorial

For a visual guide of the installation process, check out this video tutorial:

Conclusion

You've now successfully installed Sublime Text on your Ubuntu 24.04 system. This powerful editor will serve you well in your coding and writing endeavors. Remember to keep it updated for the latest features and security patches.

For more information and documentation, visit the official Sublime Text website:

https://www.sublimetext.com/

Happy coding!

Comments