Is it possible to install eclipse without jdk on linux?

I want to install eclipse on linux, is it possible to install eclipse without jdk on linux. How to install eclipse on Linux. I am using Federo 10. Please give an offer.

+3
source share
2 answers

Yes it is possible. Eclipse only needs a JRE to run. It can compile classes using its own compiler, so it does not need an external JDK.

Although, JDK is highly recommended and may be needed for some plugins (for M2Eclipse, an external JDK, for example, is required for Maven integration).

+6
source

Eclipse JRE , JDK. rpm jdk, : jdk-6u10-linux-i586-rpm

nonRPM. :

chmod 755 jdk-6u10-linux-i586.bin

. , , . (jdk1.6.0_10) , , /usr/local, /usr/local/jdk1.6.0_10/bin PATH:

export PATH =/usr/local/jdk1.6.0_10/bin: $PATH

java, javac ..

+2

Source: https://habr.com/ru/post/1762794/


All Articles