I have Eclipse (Kepler) installed on OS X and updated recently to Maverick. Since then I didn\'t start Eclipse. Yesterday I did and it told me that there are update available. I
Not enough rep to comment on Gerry Kuhn's answer so I'll make a new one.
You can install java7 but retain your current version and not affect your current set up by specifying which JVM Eclipse should use using the command line -vm option.
All is explained here
I've seen this on Windows 7, after a recent update to Eclipse Kepler and PyDev 3.0.x. The PyDev site states that the latest PyDev requires Java 7. If you don't have Java 7, use PyDev 2. (http://pydev.org/, under the "Release 3.0" title"). I'm using Java 6 to launch Eclipse.
I would check the versions of Java and PyDev you're running.
Same problem on my Mac here with
Eclipse Version: Kepler Service Release 1 PyDev 3.0.0.201311051910 org.python.pydev.feature.feature.group
solved by using 2.x version just download zip here and extracted folder in the dropin directory and restart is ok now Thanks
I solved this problem by changing the eclipse.ini file. I changed from this value
-vmargs -Dosgi.requiredJavaVersion=1.6
to this value.
-vmargs -Dosgi.requiredJavaVersion=1.7
But of course you must have jdk 7 installed previously.