Skip to content

Instantly share code, notes, and snippets.

@zenius
Created September 18, 2020 13:38
Show Gist options
  • Save zenius/ff0f0fa70a2641698f9d440c9364a0cc to your computer and use it in GitHub Desktop.
Save zenius/ff0f0fa70a2641698f9d440c9364a0cc to your computer and use it in GitHub Desktop.
installation guide for sublime text in debian 10
# 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