RubyMine fails to start on Yosemite

后端 未结 4 1161
北海茫月
北海茫月 2021-02-14 04:41

RubyMine won\'t start under Yosemite, no loading screen, no error message.

This seems to be caused by the default JVM that comes with Yosemite

EDIT

4条回答
  •  感情败类
    2021-02-14 05:25

    This solution is controversial - please read all of it before applying changes!

    Open this file

    Check the version of Java, most likely 1.8, by using java -version, you should see something like:

    java version "1.8.0_20"
    Java(TM) SE Runtime Environment (build 1.8.0_20-b26)
    Java HotSpot(TM) 64-Bit Server VM (build 25.20-b23, mixed mode)
    

    Open and edit

    /Applications/RubyMine.app/Contents/Info.plist
    

    Or for WebStorm

    /Applications/WebStorm.app/Contents/Info.plist
    

    Update the following key

    JVMVersion
    1.7*
    

    to

    JVMVersion
    1.8*
    

    RubyMine should now be good to go


    Feedback on this solution

    JetBrains do not recommend this solution as it will break autoupdating with patches. That tradeoff was acceptable for me as I just wanted to get going quickly and avoid installing Java 1.6.

    The full discussion is here https://intellij-support.jetbrains.com/entries/27854363-IDE-doesn-t-start-after-updating-to-Mac-OS-Yosemite-or-Mavericks

提交回复
热议问题