Elevate your coding experience: a step-by-step guide to install sublime text on ubuntu

Unlock a seamless coding journey with our step-by-step guide on installing sublime text on ubuntu. elevate your coding experience and boost productivity effortlessly with this comprehensive tutorial.

Install with apt


The apt repository contains packages for both x86-64 and arm64.

Install the GPG key:

wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/sublimehq-archive.gpg > /dev/null

Select the channel to use:

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

  • Dev
echo "deb https://download.sublimetext.com/ apt/dev/" | 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

If this fails ensure apt is set up to work with https sources:

sudo apt-get install apt-transport-https
Configuring a Database for Rails: A Step-by-Step Guide
Previous Tutorial Configuring a Database for Rails: A Step-by-Step Guide
Mastering Efficiency: A Comprehensive Guide to Version Control with Git
Next Tutorial Mastering Efficiency: A Comprehensive Guide to Version Control with Git