Install Sublime Text Editor on CentOS 8 - Step by Step process to do it ?
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-https
3. Select the channel to use:
i. Stable
$ echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
ii. Dev
$ echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
4. Update apt sources and install Sublime Text:
$ sudo apt-get update
$ sudo apt-get install sublime-text
To fix yum-config-manager command not found:
You need to Install yum-utils by running the command below:
$ yum install yum-utils
Step by step process to install the latest Sublime Text editor on Ubuntu 20.04 LTS ?
This article will guide you on how to #install #Sublime Text code editor on Ubuntu 20.04 using both the #command line and the #Ubuntu #Software Center.
All Ubuntu versions have Snap enabled by default. This means you can install Notepad++ on Ubuntu from the Software Center. Once the installation completes, you can launch it from the search or by typing notepad-plus-plus into the terminal.
Sublime Text Editor is cross-platform, you can use it in #Linux, #Windows or Mac systems.
