Reputation: 991
I am new in the Eclipse, I am facing a problem:
Install new Software option not showing in my eclipse.
Eclipse version: 8.5
Upvotes: 1
Views: 13634
Reputation: 1204
In my case, I needed to upgrade the JMV version from 1.8 to 11. You just need to make sure to add from the eclipse.ini file the new java path then replace the old line(s) required Java Version with the new one. As per the following example:
REPLACE
-Dosgi.requiredJavaVersion=1.8
WITH
-Dosgi.requiredJavaVersion=11
Save the new eclipse.ini then restart eclipse: The Install new software and Check for Updates will appear from the Eclipse Help menu
Upvotes: 0
Reputation: 960
Adding 3 pre-conditions for the answers above along with few other workarounds :
Close eclipse and click icon to open again
Go to Help/Search Search for "Install new" Select "Updating and installing software" from the local search results. Click on the link by the name "Installing new software" Here click the first link with the text "Help Install New Software ..."
Close eclipse , select eclipse icon and Shift-Enter to open it.
Upvotes: 0
Reputation: 1
I meet the same question. I just copy another eclipse to where eclipse installed(in my computer is /usr/lib/), and it becomes normal.
Upvotes: 0
Reputation: 1975
For those struggling, I found a good workaround on another site:
Go to help -> search and type 'install new' and select the search result that comes up - then you can proceed with installs as normal.
Upvotes: 1
Reputation: 1
For some reason, the configuration is screwed up. You just need to remove the "eclipse" directory in C:/Users// folder, then start it again. I came across the problem with an IDE based on eclipse, so I'm not sure the directory containing the configuration is "eclipse" here.
Upvotes: 0
Reputation: 19443
I think you need you need to use Help -> MyEclipse Configuration Center as described here. The update mechanism for MyEclipse is accessed in a different way than standard Eclipse.
Upvotes: 1