How To Install Sublime 3 Text On Linux Ubuntu

Sublime Text is a commonly-used text editor used to write Python code. Sublime Text’s slick user interface along with its numerous extensions for syntax highlighting, source file finding and analyzing code metrics make the editor more accessible to new programmers than some other applications like Vim and Emacs.

In this tutorial, i am going to show you how to install sublime text 3 on the ubuntu 22.04 system.

How To Install Sublime 3 Text On Linux Ubuntu

Use the following instruction to install Sublime Text 3 on your ubuntu system:

Update Apt package list. Install dependencies required to get packages from https sources:

apt

Install the GPG key:

wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -

To make sure that the https is suitable for working with the source, run the commands given below

sudo apt-get install apt-transport-https

Add the sublime text APT repository to your software’s, software repository list by typing:

echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list

Update apt sources and install Sublime Text

 sudo apt-get update
sudo apt-get install sublime-text

Conclusion

In this article, i have shown to you how to install sublime text on your Ubuntu 22.04 LTS server. To find more about the submit text editor, visit the official Sublime Text doc.

That’s it. Sublime text has been download on your Ubuntu system.

More Tutorials

Leave a Comment