https://github.com/atom/atom/issues/15687

 

How to uninstall atom in osx · Issue #15687 · atom/atom

Hi, I want to uninstall atom in mac, I installed it from official site https://atom.io/, but I can't find a way to completely remove it, looks like it is a malicious software. I have tried many...

github.com

 

위의 문서를 참고하여 실행을 하면 되는데, 그 코드는 다음과 같다.

rm -rf "/Applications/Atom.app"
rm -rf "/usr/local/bin/atom"
rm -rf "/usr/local/bin/apm"
rm -rf "~/.atom"
rm -rf "~/Library/Application Support/com.github.atom.ShipIt"
rm -rf "~/Library/Application Support/Atom"
rm -rf "~/Library/Caches/com.github.atom"
rm -rf "~/Library/Caches/Atom"
rm -rf "~/Library/Preferences/com.github.atom.plist"
rm -rf "~/Library/Saved Application State/com.github.atom.savedState"

다만, 여기서 2번째와 3번째 줄은 permission denied가 뜰 때가 있다.

rm -rf "/usr/local/bin/atom"
rm -rf "/usr/local/bin/apm"

그래서 도저히 방법을 못 찾다가 내가 찾은 방법은 직접 finder에서 해당 파일을 삭제하는 방법이었다.

(실제로 이 방법이 제대로 mac의 atom찌꺼기를 삭제하는지는 잘 모르겠으나, 일단 엇비슷하게 같은 역할을 하는 것 같긴 하다...)

 

참고로, finder에서 해당 경로로 들어가는 방법은

CMD + SHIFT + G 를 해서 위의 경로 (eg. /usr/local/bin)을 들어간 후,

atom과 apm이라는 이름을 가진 파일을 각각 삭제하는 것이다.


분명 permission denied를 정석적으로 처리하는 방법이 있을 것이라고 생각되지만...

일단 개발환경에 스트레스를 받고 있던 나에게는 한 줄기 빛과 같은 해결법(?)이기에 정리를 해보았다🥲

+ Recent posts