Thursday, February 13, 2014

Installing Sublime-text-2 and Sublime-text-3 via apt-get

If you are looking to try out this IDE for python like me, there is an easy way to get it install on Ubuntu via apt-get. I found this from an answer from Jarred Burrows at askubuntu.com.

For Sublime-text-2 go ahead and type

$ sudo add-apt-repository ppa:webupd8team/sublime-text-2

this will add the ppa that gives you acces to it. Then run a quick update

$ sudo apt-get update

and type the following to actually download sublime text

$ sudo apt-get install sublime-text

To get Sublime-text-3 the process will be similar

$ sudo add-apt-repository ppa:webupd8team/sublime-text-3

$ sudo apt-get update

$ sudo apt-get install sublime-text-installer

No comments:

Post a Comment