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
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
我在 Github 项目存储库中发布了相同的问题,这是完整的答案:https ://github.com/atom/atom/issues/2195#issuecomment-42917489
要执行的命令是:
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/
对于 Ubuntu 14.04 和 Ubuntu 18.04,使用以下命令:
sudo apt-get remove atom
如果您使用 .deb 包安装 atom,则可以使用以下命令将其删除:
sudo apt-get remove atom
如果要删除任何配置目录,可以使用以下命令:
sudo apt-get purge atom
Atom 也可以作为 Snap 安装。您可以通过以下方式找到:
$ sudo snap list
如果您在列表中看到它,您可以使用以下命令将其删除:
$ sudo snap remove atom
有关快照的更多信息: https ://www.ubuntu.com/desktop/snappy
在 RHEL(我猜还有 Fedora/CentOS)中,只需输入:yum erase atom
在 Ubuntu (15.04) 上:安装.deb
from atom.io后,我在Ubuntu Software center下找到了可用的软件包。
在带有 Atom 1.0 的 Ubuntu 14.04 上,我在/usr/local/bin/
.
但是,安装在/usr/share/atom/
,我删除了。
在 fedora 中,可以通过以下方式删除它:
sudo dnf remove atom
如果您通过 .deb 安装了 Atom,那么您可以通过以下方式删除:
sudo dpkg -r atom