Midhun Asked: 2018-06-04 05:07:52 +0800 CST2018-06-04 05:07:52 +0800 CST 2018-06-04 05:07:52 +0800 CST How to uninstall Atom on Ubuntu 17.10? 772 I am looking for a way to uninstall Atom on Ubuntu 17.10. Is there any script for it? I want to completely uninstall Atom from my machine. 17.10 atom 2 Answers Voted Best Answer dolpa 2018-06-04T21:51:31+08:002018-06-04T21:51:31+08:00 To completely remove a package: sudo apt purge <package_name> In your case: sudo apt purge atom But if Atom was installed from snap? You have to remove it by snap. From the command line run this: snap remove atom Jatin-CBS 2018-06-04T05:45:15+08:002018-06-04T05:45:15+08:00 It's easy! If you have installed using snap, then run: sudo snap remove atom Else, using apt-get: sudo apt-get remove atom After this remove the dependencies using: sudo apt-get autoremove Done!
To completely remove a package:
In your case:
But if Atom was installed from
snap
? You have to remove it bysnap
. From the command line run this:It's easy! If you have installed using
snap
, then run:Else, using
apt-get
:After this remove the dependencies using:
Done!