0

launching vscode in terminal is "code . "

launching IntelliJ in terminal is "idea . "

launching Elcipse in terminal is "?"

I am new to Eclipse, does this mean I downloaded the IDE wrong? Does Eclipse not have terminal/command line support?

aharoJ
  • 103
  • 8

1 Answers1

0

First of all, download it from the official site:

https://www.eclipse.org/downloads/packages/

If you love the shell, download the tar.gz not the installer:

eclipse-java-2022-09-R-linux-gtk-x86_64.tar.gz

enter image description here

Uncompress it and you will see the executable file

enter image description here

Then open a shell with java available and run

./eclipse

Eclipse will be opened

enter image description here

Same steps should be work on mac and windows.

java

Latest version had java included, but If you had an error related to missing java, you don't need to install it. Just download it and export these variables in the shell

export JAVA_HOME=/home/foo/Apps/openjdk-aaa-bbb
export PATH=$PATH:$JAVA_HOME/bin
JRichardsz
  • 14,356
  • 6
  • 59
  • 94