eric
eric

Reputation: 413

How to uninstall Plugins in IntelliJ IDEA?

Others have written to simply right-click the plugin to install, and then "Uninstall" will show up. But for me, right-clicking does nothing.

I am using Linux if that makes a difference. Thanks. a screenshot of IDEA's Plugins window

Upvotes: 19

Views: 38070

Answers (3)

sahasrara62
sahasrara62

Reputation: 11228

In MACOS 14.2.1 (23C71), if you want to remove plugins from the terminal itself.

  1. go to ~/Library/Application Support/JetBrains/PyCharm2023.1/plugins, add your pycharm version here
  2. use rm -rf <plugin name> to delete plugin or use rm -rf * to delete all plugins

Upvotes: 2

atc73
atc73

Reputation: 11

Go to File, Settings, Plugins, Installed, right click on the plugin, Uninstall or disable in case the plugin cannot be uninstalled directly on IntelliJ.

Upvotes: 1

Arnaud Claudel
Arnaud Claudel

Reputation: 3138

Try the Installed tab instead of the Marketplace.

Here's the official tutorial: https://www.jetbrains.com/help/idea/managing-plugins.html#remove-plugin

  1. In the Settings/Preferences dialog ⌘,, select Plugins.

  2. Open the Installed tab and find the plugin that you want to remove.

  3. Click The down arrow next to the Disable/Enable button and select Uninstall from the dropdown menu.

Upvotes: 48

Related Questions