Reputation: 31
I am wanting to install eclipse for study/school purposes. I am after "Eclipse for Java".
On the eclipse website, there seems to be two ways to achieve this:
(a) Use the eclipse installer (where you choose which eclipse you want to download and it does it for you)
(b) go the the 'dowload packages' page, download a zip file e.g. "java-neon-64-windows.zip" and then unextract the zip
I tried both of these methods. However, the resulting eclipse folders from both these installations is of different sizes.
Method (A) installation was 20.7MB
Method (B) installation was 192MB
Please clarify what causes this huge difference and which one of these should I use for my purpose??
Thanks
Upvotes: 3
Views: 1227
Reputation: 3226
Eclipse installer stores the Eclipse plugins on a different location than your Eclipse product's directory tree. This allows installer to create multiple Eclipse products without downloading all the plugins again. You can probably find the plugin pool under ~.p2/pool
.
Upvotes: 2
Reputation: 4818
The zip is a standalone (for example if you don't have admin rights) on your laptop. The other is a standard installer, which is still gonna be heavy but use the architecture of the system to install in a more "standard way". On Windows, a program folder's size, in C:Program Files, is not the size of the full application by the way.
Upvotes: 1