How To Install Eclipse IDE on Ubuntu 20.04 Jun 17, 2020 Raj 2 min read CONTENTS Install Eclipse IDE On Ubuntu 20.04 Install Java Download Eclipse Create Eclipse Launcher Icon Access Eclipse IDE Command Line GUI Conclusion SHARE THIS DOCUMENT IS ALSO AVAILABLE FOR CentOS 7 Debian 10 Debian 9 Linux Mint Ubuntu 18.04 Eclipse is a widely used Integrated Development Environment for JAVA application development. It is also used for developing applications in various programming languages such as COBOL, Ada, C, C++, Perl, PHP, Python, R, Ruby, Clojure, Scala, Groovy, and Scheme with the help of plug-ins. Eclipse is released under Eclipse Public License, a free and open-source license. Here, we will see how to install Eclipse IDE on Ubuntu 20.04. Install Eclipse IDE On Ubuntu 20.04 To be able to run commands in this post, you must have sudo privileges. Install Java Update the system repository index. sudo apt update Eclipse requires Java JDK 8 or newer to be available on your machine. You can either use Oracle JDK or OpenJDK. For this demo, I will use OpenJDK 11. sudo apt install -y openjdk-11-jdk Verify the Java version on your machine. java -version Output: openjdk version "11.0.7" 2020-04-14 OpenJDK Runtime Environment (build 11.0.7+10-post-Ubuntu-3ubuntu1) OpenJDK 64-Bit Server VM (build 11.0.7+10-post-Ubuntu-3ubuntu1, mixed mode, sharing) Download Eclipse Download the latest version of Eclipse IDE (2020-03) from the official page using a web browser. OR You can download the Eclipse package over a terminal using the following command (risk of being changed). sudo apt install -y wget wget http://mirror.umd.edu/eclipse/technology/epp/downloads/release/2020-06/R/eclipse-java-2020-06-R-linux-gtk-x86_64.tar.gz Extract Eclipse package to your desired directory (Ex. /usr/). sudo tar -zxvf eclipse-java-2020-06-R-linux-gtk-x86_64.tar.gz -C /usr/ Symlink the Eclipse executable to /usr/bin path so that other users on your machine can able to use Eclipse IDE from the command line. sudo ln -s /usr/eclipse/eclipse /usr/bin/eclipse Create Eclipse Launcher Icon In addition to the command line, you can set up the launcher icon in GNOME to start the Eclipse IDE. sudo nano /usr/share/applications/eclipse.desktop Copy and paste the following information into the above file. [Desktop Entry] Encoding=UTF-8 Name=Eclipse IDE Comment=Eclipse IDE Exec=/usr/bin/eclipse Icon=/usr/eclipse/icon.xpm Terminal=false Type=Application StartupNotify=false Access Eclipse IDE Command Line eclipse GUI Go to Activities » Search for Eclipse IDE. Launch Eclipse IDE Select a directory to store Eclipse IDE’s preferences and artifacts. Setup Eclipse Workspace Eclipse IDE 2020-03 running on Ubuntu 20.04: Eclipse IDE Running on Ubuntu 20.04 Conclusion That’s All. I hope you have learned how to install Eclipse IDE on Ubuntu 20.04. You can visit Eclipse Market Place to download plugins to extend the functionality of Eclipse IDE. ubuntu-20.04 ide eclipse java jdk Prev Post How To Install Elasticsearch, Logstash, and Kibana (ELK Stack) on Ubuntu 20.04 Next Post How To Install Android Studio on Ubuntu 20.04 RELATED POSTS How To Install Java On Ubuntu 20.04 How To Install Elasticsearch, Logstash, and Kibana (ELK Stack) on Ubuntu 20.04 How To Upgrade To Ubuntu 20.04 From Ubuntu 18.04 / Ubuntu 19.10 [Detailed Guide] How To Install Ruby On Rails On Ubuntu 20.04 How To Install VirtualBox On Ubuntu 20.04 How To Install Cacti on Ubuntu 20.04 Please enable JavaScript to view the comments powered by Disqus. comments powered by Disqus RECENT POSTS How To Install VirtualBox On Linux Mint 20 How To Backup and Restore Ubuntu & Linux Mint With Timeshift How To Upgrade To Linux Mint 20 From Linux Mint 19 [Detailed Guide] How To Install KVM On Ubuntu 20.04 / Linux Mint 20 How To Install Plex Media Server On Ubuntu 20.04 / Linux Mint 20 How To Install Android Studio on Ubuntu 20.04 TOP POSTS Install xrdp on CentOS 7 / RHEL 7 Install Gnome GUI on CentOS 7 / RHEL 7 Change default network name (ens33) to old “eth0” on Ubuntu… Install μTorrent (uTorrent) on Ubuntu 14.04 How To Configure High-Availability Cluster on CentOS 7 /… How To Install and Configure VNC Server in CentOS 7 / RHEL 7