How to Install Netbeans on Debian 10

Table of Contents
Install Netbeans on Debian 10
Netbeans is a most popular cross-platform IDE (Integrated Development Environment) supports programming languages like Java, PHP, C, C++, Python, etc. for building applications. Netbeans is a fully featured IDE which comes with a lot of cool features like syntax highlighting, code refactoring, code generation, etc. You can also extend its features by using plugins. In this tutorial, you are going to learn how to install Netbeans on Debian 10.
Prerequisites
Before you start to install Netbeans on Debian 10. You must have the non-root user account on your system with sudo privileges.
Install Snappy Package Manager
Snappy provides better package management support for Debian 10. It’s quick and easy to use. To install Snappy package manager type following command. If its already installed on the system skip to next step:
sudo apt install snapd snapd-xdg-open
Install OpenJDK on Debian
Now follow below instructions to install Netbeans on Debian 10:
Netbeans requires Java 8 or higher version installed on your system. Run the following command to check if Java installed on your system. If it’s installed, you will see java version otherwise you will get command not found error:
java -version
If java is not installed on your system the run following command to update package manager index:
sudo apt update
Now install OpenJDK 8
package by using following command:
sudo apt install openjdk-8-jdk
Now confirm the installation using the following command:
java -version
The output should be:
openjdk version "1.8.0_191" OpenJDK Runtime Environment OpenJDK 64-Bit Server VM
Install Netbeans on Debian
Here we will use the snappy package management system to install Netbeans on Debian:
To download and install Netbeans on Debian 10 you can run the following command:
sudo snap install netbeans --classic
After completing the download and the installation process you can see the following output:
netbeans 10.0 from 'apache-netbeans' installed
Start Netbeans IDE
You can start Netbeans IDE by using following command in the terminal:
netbeans
Otherwise you can start it by visiting Applications -> Netbeans
like given below:
You will see the following screen on starting NetBeans:

Conclusion
You have successfully learned how to Install Netbeans on Debian 10. If you have any queries regarding this then please don’t forget to comment below.
LATEST POSTS
-
Bash For Loop With Examples
-
How to Install Docker Compose on Debian 9
-
How to Install Google Chrome on Debian 10
-
How to Install WordPress with LEMP Stack on Ubuntu 18.04
-
How to Install Git on CentOS 7
-
How to Install Notepad++ on Ubuntu 18.04
-
Secure Apache with Let’s Encrypt SSL on Ubuntu 18.04
-
How to Install Java on Linux Mint 19
-
How to Install WordPress with LAMP Stack on Debian 10
-
How to Install Redis on Debian 10
-
How to Install IntelliJ IDEA IDE on CentOS 7
-
How to Add Swap Space on Debian 10