simonewebdesign

How to install Sublime Text 3 on Debian

Sublime Text 3

There are many ways of installing Sublime Text 3 on Linux, and it’s super easy if you are using Debian (or another distribution based on it, such as Linux Mint or Kali Linux).

This little shell script installs Sublime Text 3 on your Linux machine, with no effort at all.

Open up your terminal, then copy and paste:

x64 version

wget http://c758482.r82.cf2.rackcdn.com/sublime-text_build-3083_amd64.deb
sudo dpkg -i sublime-text_build-3083_amd64.deb

i386 version

wget http://c758482.r82.cf2.rackcdn.com/sublime-text_build-3083_i386.deb
sudo dpkg -i sublime-text_build-3083_i386.deb

The build 3083 was released on 26 March 2015, and it’s still the latest stable build at time of writing. In case you’re interested in other versions, check out the official site.

View this page on GitHub