Delete sublime text 3 on ubuntu 12.04

When the prominent 3rd beta release was released and open to the public, I decided to switch to it. It turns out that most of the plugins that I usually use are not yet ready for use, and this slowed me down. I wanted to remove it and resume using sublime text, but I did not find any way to do this separately from the return, just to reset version 3.

I am waiting for any suggestions.

EDIT I forgot to add that my exalted text 2 has not been deleted, so both of them start at the same time only now, when I try to open elevated text 2, it automatically turns off after a few seconds.

+6
source share
2 answers

Option 1

If you installed sublime-text-3 with apt-get, based on this article:

http://www.webupd8.org/2013/07/sublime-text-3-ubuntu-ppa-now-available.html

With these lines:

sudo add-apt-repository ppa:webupd8team/sublime-text-3 sudo apt-get update sudo apt-get install sublime-text-installer 

You can remove your installation:

 sudo apt-get remove sublime-text-installer 

Option 2

If you installed Sublime Text 3 from the .deb package that was downloaded directly from the Sublime Text page: http://www.sublimetext.com/3

And you used this command to install

 sudo dpkg -i sublime-text_build-3047_amd64.deb 

Or you just double-clicked it and Ubuntu Software Center installed it ...

So in this case:

 sudo dpkg -r sublime-text 

But you need to reinstall Sublime Text 2 in each case ... Your configurations are in different folders, so your previous settings belonging to Sublime Text 2 will still be there.

+33
source

The basis for the answer szine

 sudo add-apt-repository ppa:webupd8team/sublime-text-3 sudo apt-get update sudo apt-get install sublime-text-installer 

At some point, youd want to be able to call Sublime Text from the terminal by simply typing β€œsublime”. To do this, simply create a symbolic link in "/ usr / bin", for example:

 sudo ln -s /opt/sublime_text/sublime_text /usr/bin/sublime 
+1
source

Source: https://habr.com/ru/post/949293/


All Articles