4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

macOS からの IntelliJ CEのアンインストール方法

Posted at
  1. ApplicationsフォルダからIntelliJのアイコンをゴミ箱へ
  2. 設定やキャッシュファイルの削除。場所は以下の通り
# 設定
ls ~/Library/Preferences/ |grep IdeaIC
rm -fr ~/Library/Preferences/IdeaIC2018.2
rm -fr ~/Library/Preferences/IdeaIC2018.3

# キャッシュ
ls ~/Library/Caches/ |grep IdeaIC
rm -fr ~/Library/Caches/IdeaIC2018.2
rm -fr ~/Library/Caches/IdeaIC2018.3

#プラグイン
ls ~/Library/Application\ Support/ |grep IdeaIC
rm -fr ~/Library/Application\ Support/IdeaIC2018.2
rm -fr ~/Library/Application\ Support/IdeaIC2018.3

# ログ
ls ~/Library/Logs/ |grep IdeaIC
rm -fr ~/Library/Logs/IdeaIC2018.2
rm -fr ~/Library/Logs/IdeaIC2018.3

環境

  • macOS mojave
  • IntelliJ CE 2018.03 (アップデート前のものも残っていた模様)
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?