Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you upgrade netbeans without downloading the whole install? [closed]

I can update the plugins, but I don't see a way to update for the whole product. I have Netbeans 6.7.0.

Thanks!

like image 946
Mercer Traieste Avatar asked Jul 27 '09 20:07

Mercer Traieste


People also ask

Can you update NetBeans?

When new versions of NetBeans are released, one simple way to upgrade to the latest version is to download the new version and install it, as shown previously.

How do I install the latest version of NetBeans?

To install NetBeans: Download NetBeans from http://netbeans.org/downloads/. Choose platform "Linux (x86/x64)" ⇒ "Java SE". You shall receive a sh file (e.g., " netbeans-7.x-ml-javase-linux.sh ") in " ~/Downloads ".

What is the most stable version of NetBeans?

Apache NetBeans 15 Latest version of the IDE, released on August 31, 2022.

Which version of JDK is required for NetBeans 13?

The Apache NetBeans 13 binary releases require JDK 11+, and officially support running on JDK 11 and JDK 17.


2 Answers

No. Not with a normal binary install.

You could build it yourself from the source. Then you'd just need to use subversion to upgrade your local sources to a new release branch and rebuild. This would probably be more trouble than you are willing to go through.

like image 73
VoidPointer Avatar answered Oct 21 '22 17:10

VoidPointer


This information is available for each release in the Upgrading and Multiple Installation Support section of the installation instructions on Netbeans website. For example, in Netbeans 7.1 it says:

Multiple installations of NetBeans IDE 5.x, 6.x, and 7.x can coexist with NetBeans IDE 7.1.1 on the same system. You do not have to uninstall the earlier versions in order to install or run NetBeans IDE 7.1.1.

If you have an existing installation of NetBeans IDE you can choose whether or not to import the user settings from the existing user directory when you run NetBeans IDE 7.1.1 for the first time.

Note: Incremental version upgrades of the IDE cannot be performed at this time. To upgrade to the most recent version you must download the latest installer.

So while you can't upgrade you can easily import the settings from one installation to another. You will be asked the first time you launch a new installation.

On Windows:

enter image description here

On Linux:

enter image description here

The imported settings include (to quote Netbeans help):

  • Keyboard shortcuts
  • Most Source Editor font and color settings
  • Java Platform Manager contents
  • Library Manager contents
  • Database drivers
  • Servers

You can recreate the conditions of the first launch at any time by deleting your current userdir. When you restart the IDE you will be prompted with the option of importing settings from a previous version of the IDE.

like image 45
Johnny Baloney Avatar answered Oct 21 '22 16:10

Johnny Baloney