Eclipse Installation

Asked

Viewed 1,007 times

1

Could someone share some updated Eclipse setup and configuration manual, and in this manual have the steps for setting up the environment variables so I can compile and run the projects?

  • 1

    Which operating system?

  • 1

    The operating system that I will do a new installation will be Windows 10 32bits.

  • 1

    Set up java environment variables in windows: http://www.devmedia.com.br/preparaca-do-ambiente-para-development-em-java/25188 Run Eclipse: https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-00-introduction-to-computers-and-engineering-problem-solving-spring-2012/tools/Mit1_00s12_insl_eclpse_win.pdf

  • Thank you for sharing Emerson!

1 answer

2


Installation in Windows is very simple Are you trying to set up a java project? If yes you can follow this tutorial:

Summary:

You will need to:

Installing the JDK

Run the JDK installer and follow the instructions until finished (next > next > Finish), if desired, you can inform the installation directory.

Together with the JDK will be done the installation of the JRE (Java Runtime Environment) which is the application that allows you to run the programs in JAVA on your operating system.

Configuring JAVA on Windows

Right-click Computer and follow the options Properties > Advanced System Settings > (Advanced tab) Environment Variables...

Create/edit the system variables listed below:

  • JAVA_HOME: enter the JDK installation directory. Example C: Program Files Java jdk1.8.0_45;
  • Path: enter %JAVA_HOME% bin;
  • CLASSPATH: enter %JAVA_HOME% lib tools.jar;

To confirm that the JAVA installation and configuration was successfully performed, run the "java -version" and "javac -version" commands at the command prompt.

Installing the Eclipse

Eclipse runs directly from an executable file. Extract the ".zip" package from Eclipse to the directory of your choice. Run the eclipse.exe file to start.

When starting the eclipse, you should set the working Workspace (which is the folder where your working space will be kept

Ready! Your JDK and Eclipse are installed and Configured for JAVA programming!

REF: http://www.matera.com/br/2015/05/12/tutorial-instalacao-do-java-jdk-e-eclipse-no-windows/

  • Thank you for sharing José!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.