How to install sublime text on Ubuntu
how-to-install-sublime-text-3-on-ubuntu-18-04
To install Sublime Text 3 on your Ubuntu system, follow these steps:
1. Update the apt package list and install the dependencies necessary to fetch packages from https sources:sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
2. Import the repository’s GPG key using the following curl command:
curl -fsSL https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
Add the Sublime Text APT repository to your system’s software repository list by typing:
sudo add-apt-repository "deb https://download.sublimetext.com/ apt/stable/"
3. Once the repository is enabled, update apt sources and install Sublime Text 3 with the following commands:
sudo apt update
sudo apt install sublime-text
See also
Comments