WHAT IS SUBLIME TEXT EDITOR ?
1) Install sublime text editor
Go to launcher and lunch terminal
2) Install the GPG key:
$ wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
3) Ensure apt is set up to work with https sources:--
$ sudo apt-get install apt-transport-https
- Advanced Package Tool, or APT, is a free-software user interface that works with core libraries to handle the installation and removal of software on Debian, Ubuntu, and related Linux distributions.
4) Stable channel to use:
$ echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
- In computing, echo is a command that outputs the strings it is being passed as arguments. It is a command available in various operating system shells and typically used in shell scripts and batch files to output status text to the screen or a computer file, or as a source part of a pipeline.
5) Update apt sources and install Sublime Text
$ sudo apt-get update
$ sudo apt-get install sublime-text
No comments:
Post a Comment
testing