A JRE or JDK must be available in order to run Eclipse. No JVM was found after searching the following locations

前端 未结 27 2110
渐次进展
渐次进展 2020-12-01 00:31

Eclipse is unable to open, have used eclipse before and has open before without a problem. Now I keep getting the following error message:

A Java Runt

27条回答
  •  独厮守ぢ
    2020-12-01 01:05

    Moderately future proof example for Linux-like systems. Assuming javac installed and on your path.

    ./eclipse -vm dirname $(readlink -f $(which javac))

    This will find the directory where javac is installed, and pass as vm argument to eclipse.

提交回复
热议问题