intellij dose not start and shows "start error"

Answered

hi, I have tried opening IntelliJ idea community edition and it showed me the below error, how to overcome this error?

I have tried bisecting the plugins and restarting but it still shows me the same error, until the stage even there are no plugins left in the folder.

Thanks in advance

 

Internal error. Please refer to http://jb.gg/ide/critical-startup-errors

java.lang.NoSuchMethodError: 'com.intellij.ide.plugins.IdeaPluginDescriptorImpl[] com.intellij.ide.plugins.PluginManagerCore.loadDescriptors()'
at com.a.a.b.b.ar.a(ar.java:121)
at com.a.a.b.b.ar.a(ar.java:71)
at com.intellij.idea.MainImpl.start(MainImpl.java:19)
at com.intellij.idea.StartupUtil.lambda$startApp$5(StartupUtil.java:277)
at com.intellij.util.ui.EdtInvocationManager.executeWithCustomManager(EdtInvocationManager.java:73)
at com.intellij.idea.StartupUtil.startApp(StartupUtil.java:272)
at com.intellij.idea.StartupUtil.prepareApp(StartupUtil.java:239)
at com.intellij.ide.plugins.MainRunner.lambda$start$0(MainRunner.java:45)
at java.base/java.lang.Thread.run(Thread.java:834)

-----
JRE 11.0.6+8-b765.25 amd64 by JetBrains s.r.o
/home/sri-sai-ram/.local/share/JetBrains/Toolbox/apps/IDEA-C/ch-0/201.6668.121/jbr

3
9 comments
Avatar
Liubov Melnikova

Hello,

Have you updated Intellij through the Toolbox?  It seems to be a known issue then: https://youtrack.jetbrains.com/issue/IDEA-237012   If not, see the related question of the bug tracker.

0

I had the same error with my IntelliJ 2020.1 installation. I deleted my previous IntelliJ 2019.x installation, removed all the old configurations and installed a new copy. Yet, it still failed to start because of this exception. 

However, if I use a new user and install a new copy in the new user environment of the same Windows 10. It started perfectly.

0

I fixed my installation. The previous configurations were copied to a new location to %USERPROFILE%\AppData\Local\JetBrains and %USERPROFILE%\AppData\Roaming\JetBrains which I was not aware of (duh!!!) I was focusing on the old directory locations. I cleared these directories and got it to run with default setup. When I reimport my old configurations the same error returned. I guessed the marketplace plugin was the culprit and deleted %USERPROFILE%\AppData\Roaming\JetBrains\IdeaIC2020.1\plugins\marketplace. When I started it again, IntelliJ was up and running.

2

I hit this same issue with OSX Catalina 10.14.6 when I upgraded from PycharmCE2019.3 to 2020.1.  The fix was to remove the ~/Library/Application Support/JetBrains/PyCharmCE2020.1/plugins/marketplace directory and start Pycharm again.  Works fine now.

6

Run this commad

rm -rf ~/Library/Application\ Support/JetBrains/IdeaIC2020.1/plugins/marketplace/lib

 

thanks, Chris

 

5

I got this error when I installed some Markdow plugins. I had to remove the "lib" marketplace plugins folder:

rm -rf ~/.local/share/JetBrains/Toolbox/apps/AndroidStudio/ch-0/201.6719854.plugins/marketplace/lib

I'm using Android Studio 4.1 RC 1 with the Jetbrains Toolbox on Linux (Ubuntu).

5

Hi guys,
if your android studio not opening properly after updated.
Just press CTR+H in FileManager (show hidden files). now you can see the .local file.
now go to remove the google file from there. (Path -> local/share/google).

This for Ubuntu users.

 

4

On Ubuntu, I solved this error by running following command,

rm -rf ~/.local/share/Google/AndroidStudio4.1/marketplace/lib
6

Read the above comments and found that in order to fix this issue we need to delete the marketplace/lib file of whatever Jetbrains IDE you are using.

On ubuntu find the folder using the following command - 

```sudo find ~/ -iname "marketplace" -type d ```

then delete the the lib folder in the path provided by terminal, in my case

rm -rf /home/suyash/.AndroidStudio4.0/config/plugins/marketplace/lib

Run the ide again and Bingo!! 

 

2

Please sign in to leave a comment.