Created
September 18, 2020 13:38
-
-
Save zenius/ff0f0fa70a2641698f9d440c9364a0cc to your computer and use it in GitHub Desktop.
installation guide for sublime text in debian 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add Sublime Text repository signing key to verify downloaded packages: | |
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | |
# For stable releases of Sublime Text: | |
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list | |
# For Unreleased, development versions: | |
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list | |
# Ensure that apt can handle HTTPS sources: | |
sudo apt install apt-transport-https | |
# Update the list of available packages | |
sudo apt update | |
# Finally, install Sublime Text | |
sudo apt install sublime-text | |
debian wiki link: https://wiki.debian.org/SublimeText |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment