How to fix Eclipse Java Virtual Machine Launcher Error?

后端 未结 2 1585
野趣味
野趣味 2021-01-06 14:21

So like the title says, Im having an issue with eclipse JVM launcher. Last night, everything was working fine, as far as I know, nothing at all has changed on my pc since th

2条回答
  •  时光说笑
    2021-01-06 15:07

    For windows user, if your getting this error:

    Java Virtual Machine Launcher- Error: could not open C:\Program Files\Java\jre1.8.0_60\lib\amd6jvm.cfg

    it indicates there is no jre1.8.0_60 version in your system. So you need to set the JRE version which is already there in our system by executing the below command:

    1. Go to cmd prompt
    2. go to the eclipse folder (which you have installed) by executing: cd eclipse-folder-path
    3. execute below command: eclipse -vm jre_path
      ex:

      eclipse -vm "C:\Program Files\Java\jdk1.8.0_131\jre\bin\javaw" 
      

提交回复
热议问题