Install NetBeans IDE 13 on Ubuntu, Debian, Linux Mint

ComputingPost
3 min readNov 23, 2022

--

NetBeans is a very powerful Integrated Development Environment (IDE) tool mostly used for Java and C/C++ Development. It allows you easily develop Web, Desktop and Mobile Applications from its modular framework. You can add support for other Programming Languages such as PHP, HTML, JavaScript, C, C++, Ajax, JSP, Ruby on Rails e.t.c using extensions.

NetBeans IDE 13 has been released with support for Java JDK 11. It also comes with the following features:

  • Bundled nb-javac, startup experience simpler and smoother.
  • Light FlatLaf look and feel by default.
  • Partial upgrades for Maven, Gradle, and PHP.

Please visit the Apache NetBeans 13 page for further detail.

Step 1: Install NetBeans Dependencies

Netbeans needs Java JDK to run. Since Java 11 is officially supported. In this guide will use the default supported Java version in our operating system.

To install the default Java that ships with your distribution, run:

sudo apt update

sudo apt install openjdk-17-jdk curl wget unzip

Confirm installed version of Java:

$ java --version

openjdk version "17.0.3" 2022-04-19

OpenJDK Runtime Environment (build 17.0.3+7-Ubuntu-0ubuntu0.22.04.1)

OpenJDK 64-Bit Server VM (build 17.0.3+7-Ubuntu-0ubuntu0.22.04.1, mixed mode, sharing)

Step 2: Download NetBeans IDE installer script

Download NetBeans 13 installer script on your Desktop machine.

### Download with curl ###

curl -O https://dlcdn.apache.org/netbeans/netbeans-installers/13/Apache-NetBeans-13-bin-linux-x64.sh



### Download with wget ###

wget https://dlcdn.apache.org/netbeans/netbeans-installers/13/Apache-NetBeans-13-bin-linux-x64.sh

One the file is downloaded to your local system proceed to the next step.

Step 3: Install NetBeans IDE 13 on Ubuntu, Debian, Linux Mint

Make the script executable using the following command:

chmod +x Apache-NetBeans-13-bin-linux-x64.sh

Run the installer to have NetBeans IDE 13 installed on your on Ubuntu, Debian, Linux Mint system.

sudo ./Apache-NetBeans-13-bin-linux-x64.sh

Read and accept License agreement terms.

install-netbeans-13-02-1024x854

Use default path for installing Apache NetBeans IDE or set custom directory.

install-netbeans-13-03-1024x855

During installation you’re asked enable automatic updates for the software. Choose to enable or disable this.

install-netbeans-13-04-1024x844

Installation process should complete in few minutes

install-netbeans-13-06-1024x848

Launch Apache NetBeans IDE 13 on Ubuntu / Debian / Linux Mint from your Desktop launcher.

install-netbeans-ubuntu-02-1024x319

Step 4: Start Netbeans IDE on Ubuntu, Debian, Linux Mint

Now that you have downloaded and installed Netbeans IDE, you can launch it from your Applications launcher menu.

install-netbeans-ubuntu-02-1-1024x319

Once the application is started, you should see default welcome page for NetBeans.

install-netbeans-13-07-1024x545

You can install available Plugins under My NetBeans > Available Plugins

install-netbeans-13-08-1024x591

Select the plugins you’ll like to be installed in your system and enjoy using NetBeans IDE on your Ubuntu / Debian / Linux Mint machine.

https://www.computingpost.com/install-netbeans-ide-13-on-ubuntu-debian-linux-mint/?feed_id=20532&_unique_id=637d7530c9845

--

--

ComputingPost

ComputingPost — Linux Howtos, Tutorials, Guides, News, Tips and Tricks.