Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to uninstall Atom text editor on Linux?

Tags:

atom-editor

i was reading the documentation looking for a way to cleanly uninstall Atom from my linux OS, but i didn't find anything related.

Is there a set of directories to delete? or maybe an script to run?

Thanks for the attention

like image 219
Roberto Aguilar Avatar asked May 13 '14 00:05

Roberto Aguilar


2 Answers

I have posted the same question in the Github Project Repository and this is the complete answer: https://github.com/atom/atom/issues/2195#issuecomment-42917489

The commands to execute are:

sudo rm /usr/local/bin/atom sudo rm /usr/local/bin/apm rm -rf ~/atom rm -rf ~/.atom rm -rf ~/.config/Atom-Shell sudo rm -rf /usr/local/share/atom/ 
like image 198
Roberto Aguilar Avatar answered Sep 24 '22 10:09

Roberto Aguilar


For Ubuntu 14.04 & Ubuntu 18.04, use the following:

sudo apt-get remove atom 
like image 22
Jay Avatar answered Sep 26 '22 10:09

Jay