NetBeans

NetBeans :- is a software development platform written in Java. The NetBeans Platform allows applications to be developed from a set of modular software components called modules. Applications based on the NetBeans Platform, including the NetBeans integrated development environment (IDE), can be extended by third party developers.
The NetBeans IDE is primarily intended for development in Java, but also supports other languages, in particular PHP, C/C++ and HTML5.

NetBeans is cross-platform and runs on Microsoft Windows, Mac OS X, Linux, Solaris and other platforms supporting a compatible JVM.

Install NetBeans IDE on Ubuntu 12.04 for PHP development

Netbeans is a popular IDE from Oracle. To run it on Ubuntu, you need to install Oracle Java JDK first:

Step :-  1) open terminal & run this command's 

:- $ sudo add-apt-repository ppa:webupd8team/java

:- $ sudo apt-get update
:- $ sudo apt-get install oracle-java6-installer

If Java is installed correctly the following command should output current Java version:


:- $ java -version


Go to your home folder and download NetBeans:
cd
wget http://download.netbeans.org/netbeans/7.3.1/final/bundles/netbeans-7.3.1-php-linux.sh

The current version is 7.3.1 (16/06/2013). Please check the site (http://netbeans.org/) to see if there is a newer version available and if it is there, download it instead.


Give yourself permissions to execute the install script you have just downloaded and execute it:

:- $ chmod u+x netbeans-7.3.1-php-linux.sh
:- $ ./netbeans-7.3.1-php-linux.sh

No comments:

Post a Comment