Reputation: 413
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.
Upvotes: 19
Views: 38070
Reputation: 11228
In MACOS 14.2.1 (23C71), if you want to remove plugins from the terminal itself.
~/Library/Application Support/JetBrains/PyCharm2023.1/plugins
, add your pycharm version hererm -rf <plugin name>
to delete plugin or use rm -rf *
to delete all pluginsUpvotes: 2
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
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
In the Settings/Preferences dialog ⌘,, select Plugins.
Open the Installed tab and find the plugin that you want to remove.
Click The down arrow next to the Disable/Enable button and select Uninstall from the dropdown menu.
Upvotes: 48