• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Eclipse IDE installation

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,

I have downloaded eclipse.

But when I try to install it and clicked on the exe file , it executes, but I am unable to see any installation or unable to launch it.

What could be wrong..please help...I am new to Java.

Thanks in advance.
 
Marshal
Posts: 79178
377
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Many people, myself included, think that if you are new to Java you oughtn't to use Eclipse. You have enough to learn with Java without having to learn Eclipse as well. Leave the IDEs until you are more experienced.

But if you insist on using Eclipse, try Campbell's cheat technique, which I have only got to work on Windows.
  • Make sure you have the Java PATH set up correctly; you should be able to write java -version at any command prompt and get a sensible reply, preferably 1.6.0_05.
  • Create a suitable folder to put the downloaded Eclipse file in.
  • Unzip Eclipse
  • Find the eclipse.exe icon, which is round and blue.
  • Right-drag it onto the desktop and release the mouse.
  • Click either "copy here" or "make shortcut here"
  • You now have a round blue icon on the desktop. Double-click that.
  • Most likely reason you aren't getting it to work: you haven't set up the PATH for your Java installation. Find the installation instructions (here for Windows) and go down to the bit about setting the PATH. Probably easiest to set it permanently.
    CR
    [edit: bit added]If "copy here" doesn't work try "make shortcut" and vice versa.[/edit]
    [ March 22, 2008: Message edited by: Campbell Ritchie ]
     
    Campbell Ritchie
    Marshal
    Posts: 79178
    377
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    I've logged off and gone to Windows to check. I think you are better off using "make shortcut" than "copy."
     
    Ranch Hand
    Posts: 1683
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    I would strongly recommend specifying the JRE and not relying on the JAVA_HOME environment variable. One way to do this is to use the -vm argument in the shortcut like this.

    c:\eclipse\eclipse -vm c:\jre\bin\javaw.exe

    Another way is to create a text file named eclipse.ini in the same folder as eclipse.exe with these contents:

    -vm
    c:/jre/bin/javaw.exe
     
    Ranch Hand
    Posts: 42
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    Hi Peeru,

    Eclipse does not need to install. To make it run, try

    1. Unzip your Eclipse zip file, e.g. to C:\eclipse
    2. set JAVA_HOME environment variable in your Windows environmentt to JDK you installed.
    3. Click C:\eclipse\eclipse.exe will launch eclipse

    Hope this helps,
    Calson
    SCJP, SCWCD, SCBCD
     
    Ranch Hand
    Posts: 3389
    Mac MySQL Database Tomcat Server
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    adding to what campbell suggested:

    You can right click on the "eclipse.exe" and select "Send To" menu option and in which you choose "Desktop (create shortcut)" ! - it does the same.

    Yes, all it needs is the Java executable to start eclipse. The other ranchers have given the alternatives. Hopefully it should go through!
     
    Don't get me started about those stupid light bulbs.
    reply
      Bookmark Topic Watch Topic
    • New Topic