Install sublime text 3 in ubuntu linux
Install sublime text 3 in ubuntu linux
1. Open terminal via Ctrl+Alt+T or by searching for “Terminal”
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
2. Then add the apt repository via command:
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
3. Finally check updates and install sublime-text via your system package manager: or by running commands:
sudo apt-get update
sudo apt-get install sublime-text
Once installed, launch it from your desktop
For Uninstall:
sudo apt-get remove sublime-text && sudo apt-get autoremove
And the official Sublime Text apt repository can be removed by going to System Settings -> Software & Updates -> Other Software tab.
if you face any prblm go to this link https://linuxize.com/post/how-to-install-sublime-text-3-on-ubuntu-20-04/
0 Comments