This article covers how to install sublime text editor on the CentOS 8 system through the terminal. Sublime text editor is quite similar to vim editor. Sublime text has a built-in Python API available in Windows, Linux, and Mac OS.To install Sublime Text on Ubuntu:1. Install the GPG key:$ wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -2. Ensure apt is set up to work with https sources:$ sudo apt-get install apt-transport-https3. Select the channel to use:i. Stable$ echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.listii. Dev$ echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list4. Update apt sources and install Sublime Text:$ sudo apt-get update$ sudo apt-get install sublime-textTo fix yum-config-manager command not found:You need to Install yum-utils by running the command below:$ yum install yum-utils