Start Failed: Internal error starting Android Studio on ubuntu

I launch Android Studio for the first time after unpacking the file that I downloaded from the Android website by calling. /studio.sh in the android-studio / bin directory. I get the following error:

    Start Failed: Internal Error. Please report to https://code.google.com/p/android/issues

java.lang.ClassNotFoundException: com.intellij.ide.plugins.PluginManager
    at com.intellij.util.lang.UrlClassLoader.findClass(UrlClassLoader.java:218)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:348)
    at com.intellij.ide.Bootstrap.main(Bootstrap.java:36)
    at com.intellij.idea.Main.main(Main.java:119)

I am running java version 1.8.0_121

+4
source share
2 answers

Errors were caused by antivirus software (in this case Avast). After uninstallation, I was able to properly install and run Android Studio. this solved the problem.

the answer is taken here ..

Android Studio Start Failed - ClassNotFoundException: com.intellij.ide.plugins.PluginManager

0
source

studio.sh script jdk.

:

jdk Android, , studio.sh.

0

Source: https://habr.com/ru/post/1673693/


All Articles