http://askubuntu.com/questions/26632/how-to-install-eclipse

How to install Eclipse?

I want to install the latest version of Eclipse but the Ubuntu Software Centre contains an older version.

Is there a PPA or some other way to install latest Eclipse? Please describe the steps for full installation.

asked Feb 16 '11 at 11:54
Gaurav Butola
2,67163056
 
    
Have you tried installing it fro USC? –  Mitch♦ May 31 '12 at 10:35
    
USC? what you mean by that ? I'm new to Ubuntu –  Ant's May 31 '12 at 10:38
1  
'Ubuntu Software Center', as shown below. I have installed Eclipse on a couple different computers using the software center method as shown - and then PyDev from inside Eclipse. Works slick. –  memilanuk May 31 '12 at 16:29 

12 Answers

up vote155down voteaccepted

If you've downloaded Eclipse from their official website, follow these steps for the installation.

  1. Extract the eclipse.XX.YY.tar.gz using

    tar -zxvf eclipse.XX.YY.tar.gz
  2. Become root and Copy the extracted folder to /opt

    sudo mv eclipse.XX.YY /opt
  3. Create a desktop file and install it:

    gedit eclipse.desktop

    and copy the following to the eclipse.desktop file.

    [Desktop Entry]
    Name=Eclipse
    Type=Application
    Exec=env UBUNTU_MENUPROXY=0 eclipse44
    Terminal=false
    Icon=eclipse
    Comment=Integrated Development Environment
    NoDisplay=false
    Categories=Development;IDE;
    Name[en]=Eclipse

    then execute the following command to automatically install it in the unity:

    sudo desktop-file-install eclipse.desktop
  4. Create a symlink in /usr/local/bin using

    sudo ln -s /opt/eclipse/eclipse /usr/local/bin/eclipse44
  5. For eclipse icon to be displayed in dash, eclipse icon can be added as

    sudo cp /opt/eclipse/icon.xpm /usr/share/pixmaps/eclipse.xpm
  6. Give eclipse the required permissions to modify the osgi file.

    sudo chown -R $USER:$USER /opt/eclipse/configuration/org.eclipse.osgi
  7. Don't forget that you need to have either OpenJDK or Sun Java installed to be able to run eclipse. Check this question for more information about Java installation. Here is a simple example of installing Open JDK 1.6:

    sudo apt-get install openjdk-6-jdk

That's it.

 
6  
I recommend that way, with a minor change: Use the eclipse version when creating a the symlink (eg: ln -s /opt/eclipse/eclipse /usr/local/bin/eclipse42), and use Exec=eclipse42 at the desktop entry. That way you will be able to install multiple different versions of eclipse. –  ortang May 27 '13 at 11:36
4  
Don't forget that you need to have either OpenJDK or Sun Java installed to be able to run eclipse. Run sudo apt-get install openjdk-6-jdk or check out this link for Sun Java ubuntugeek.com/… –  Andy Braham Oct 5 '13 at 20:06 
6  
Also worth noting that for 13.10, eclipse.desktop needs Exec=env UBUNTU_MENUPROXY=0 eclipse in order for the menus to work per stackoverflow.com/questions/19452390 –  TimD Nov 25 '13 at 16:46
4  
For steps 2 and 3, I think sudo mv eclipse /opt is more clear and easier for beginners –  Lucas Feb 12 '14 at 10:18
8  
Works for me except /opt/eclipse/configuration/org.eclipse.osgi does not exist... –  Gerhard Burger Jul 27 '14 at 9:52

12.04 LTS

The preferred method:
Open Software Center -

In Ubuntu software center select Eclipse
I installed the Extensible Tool Paltform and Java IDE as well, but installing that is optional.

Enter your password in the authentication dialog.
This will get you 3.7.1 inside of a package management system.

Alternative options:

The next most preferred method
PPA:
As of this moment, the eclipse-team PPA has no eclipse package for 12.04.
I'll update the answer as things develop.

When it becomes available, if you already installed via software center-
sudo add-apt-repository ppa:eclipse-team/ppa && sudo apt-get update && sudo apt-get upgrade

The least preferred method
Portable:
For a portable installation you can still download directly from the Eclipse website. This gives you the ability to customize several Eclipse installations for different languages CDT, Java, and PyDev or Aptana for instance. It doesn't allow automatic updates. Installing through Software Center is always the preferred method.

I tested the portable 3.7.1 and 3.7.2 tarballs and they work just fine on 12.04 LTS.

An added disadvantage to portable installs is that you have to update your launcher if you move the folder or launch it directly.

answered Apr 3 '12 at 0:14
hbdgaf
16.3k23576
 
    
I followed the "preferred method", but curious as to why this is more preferable than the others? – Inquisitor May 25 '13 at 5:53
    
Search the site for questions about java apps not showing up in the app switcher and other things(reproducible problems for example). I don't have these issues when I install from repo, but people complain about them consistently when a repo install would have avoided the problem instead of requiring a cheese tray. –  hbdgaf May 25 '13 at 5:56
    
Well the preferred method definitely installed cleanly for me. Thanks otherwise I would have chosen the messier method –  Inquisitor May 25 '13 at 11:31
2  
This method is definitely easier, although I would combine it with the accepted answer's method for the launcher/desktop shortcut. –  ashes999 Jun 16 '14 at 16:18
2  
@Seanny123 The PPA hasn't been updated since before 12.04. This answer has been around for a while. – hbdgaf Oct 25 '14 at 7:06

How to install Eclipse 4.2 on Ubuntu 12.04

Since the Eclipse packages in the Ubuntu repositories are out of date, if we want to install latest releases, we are going to have to do it manually. You can just download the tar.gz file from eclipse.org.

  1. Download Eclipse. I got eclipse-jee-juno-SR1-linux-gtk.tar.gz

  2. Extract it by executing a command line

    tar -xzf eclipse-jee-juno-SR1-linux-gtk.tar.gz

    Or with Archive Manager extraction.

  3. Move extracted eclipse folder to /opt/ folder

    mv eclipse /opt/
    sudo chown -R root:root /opt/eclipse
    sudo chmod -R +r /opt/eclipse
  4. Create an eclipse executable in your user path

    sudo touch /usr/bin/eclipse
    sudo chmod 755 /usr/bin/eclipse

    Create a file named eclipse in /usr/bin/ with your preferred editor (nanogeditvi...)

    Copy this into it

    #!/bin/sh
    export ECLIPSE_HOME="/opt/eclipse"
    $ECLIPSE_HOME/eclipse $*

    And save the file

  5. Create a Gnome menu item

    Create a file named eclipse.desktop in /usr/share/applications/ with your preferred editor (nanogeditvi...)

    Copy this into it

    [Desktop Entry]
    Encoding=UTF-8
    Name=Eclipse
    Comment=Eclipse IDE
    Exec=eclipse
    Icon=/opt/eclipse/icon.xpm
    Terminal=false
    Type=Application
    Categories=GNOME;Application;Development;
    StartupNotify=true

    And save the file

  6. Launch Eclipse

    /opt/eclipse/eclipse -clean &

  7. Now you can Lock Eclipse to the launcher bar by clicking right button on Lock to Laucher

answered Nov 20 '12 at 22:12
Joe
498816
 
3  
Good instructions, but I think you shouldn't chown and chmod the /opt/eclipse folder. I wasn't able to install plugins after doing that. –  TomTasche Apr 30 '13 at 9:05
    
Like in point 3 but with the normal user? –  Joe May 4 '13 at 20:30
3  
Simply don't do anything except mv eclipse /opt/ in step 3. –  TomTasche May 5 '13 at 16:39
1  
The last line of the script file should be $ECLIPSE_HOME/eclipse "$@" not $ECLIPSE_HOME/eclipse $*. This will preserve things like arguments with spaces in them. –  jbo5112 Dec 13 '13 at 21:20
    
You should probably use /usr/local/bin instead of /usr/bin –  kzh Jun 4 '14 at 16:08

I recommend you to download directly from the eclipse website. the installation process very easy, just extract the files tar.gz, to remove it is also quite easy, simply by deleting the eclipse folder :D

answered Feb 16 '11 at 12:12
 

From your desktop, Click on the Ubuntu Software Center 

Once it opens do a search for Eclipse

When the search is done, you will see Eclipse listed. all you have to do is click on install, sit back and relax until the installation is done.

If you still have any questions, do not hesitate to ask.

answered May 31 '12 at 10:46
Mitch
45.9k982133
 
1  
How do we install eclipse version 4.2 (SR2) with Ubuntu Software Center? It appears version 3.8 –  Joe May 4 '13 at 20:26

This is the instructions copied from http://www.inforbiro.com/blog-eng/ubuntu-12-04-eclipse-installation/

How to install Eclipse IDE platform on Ubuntu 12.04 LTS Precise Pangolin

1) Open a terminal and enter the command

sudo apt-get install eclipse-platform

2) After Eclipse is installed you can install development plugins based on your needs, e.g.:

will install Java Development Tools (JDT) package for Eclipse

sudo apt-get install eclipse-jdt

will install C/C++ development tools packages for Eclipse

sudo apt-get install eclipse-cdt
answered May 31 '12 at 10:48
 

Always download the packaged eclipse from their website. Its best for you to place the eclipse.tar.gz into your opt directory and create symbolic to it and use that around your system.

So if you end up upgrading in the future, all your shortcuts and links wont die.

This is the preferred setup for eclipse. IMO

answered Feb 16 '11 at 14:22
myusuf3
6,261196289
 

I created this little script to install on a bunch of Cinnamon machines. You might have to change specific stuff for your needs but you can use this as a template for your own.

#!/usr/bin/env bash

wget -P /tmp/ http://eclipse.mirror.triple-it.nl/technology/epp/downloads/release/kepler/SR1/eclipse-standard-kepler-SR1-linux-gtk-x86_64.tar.gz

tar -xzf /tmp/eclipse-standard-kepler-SR1-linux-gtk-x86_64.tar.gz -C /opt/
chown -R root: /opt/eclipse/ cat <<- 'EOF' > /usr/bin/eclipse42
#!/bin/sh
export ECLIPSE_HOME="/opt/eclipse"
$ECLIPSE_HOME/eclipse "$@"
EOF chmod +x /usr/bin/eclipse42 cat <<- EOF > /usr/share/applications/eclipse42.desktop
[Desktop Entry]
Encoding=UTF-8
Name=Eclipse
Comment=Eclipse IDE
Exec=eclipse42
Icon=/opt/eclipse/icon.xpm
Terminal=false
Type=Application
Categories=GNOME;Application;Development;IDE;
StartupNotify=true
EOF

You can now run Kepler by typing eclipse42 or wait for the menu to refresh (or enter restart) to find it there.

Feel free to comment changes you'd recommend.

answered Jan 19 '14 at 22:29
Redsandro
7731920
 

If you are asking about the eclipse classic the latest version from the eclipse project is 3.7.2: and you you can download the tar ball from the website for your OS here:

http://www.eclipse.org/downloads/packages/eclipse-classic-372/indigosr2

The latest version in the Ubuntu Software Center is Eclipse 3.7.1; either download it from there or use the terminal with this command line:

" sudo apt-get install eclipse && sudo apt-get update "

As far as a PPA? There appears to be no current or maintained PPA for eclipse classic. The PPA page at LaunchPad still exists but there has not been any activity for what appears to be two years now. You can check out the PPA page here:

https://launchpad.net/~eclipse-team/+archive/ppa

The best way to install eclipse classic and the latest version 3.7.2 is from the Eclipse Classic project download page for your OS version. Warning: Eclipse 3.7.2 is built and developed for Ubuntu 10.04 LTS according to the Eclipse Project "Read Me" html documentation. There have been known "will not start issues" with later Ubuntu versions due to the compatibility of Java Runtime Enviroments; it works with JRE6 rather than JRE7. Good Luck :)

answered Mar 31 '12 at 5:39
 

As with any other Eclipse version, you don't have to get it from the repositories. Just download the appropriate archive from eclipse.org, extract and run Eclipse.

Eclipse in the repositories is often outdated. It is usually updated every ubuntu release.

answered Jul 27 '12 at 12:02
nickguletskii
2,35911025
 
mkdir ~/opt

Change directory to the folder where your browser downloaded the Eclipse package to. Then unpack Eclipse into the opt folder:

cd {directory where your browser downloaded the package to}
tar -zxvf eclipse-jee-juno-SR1-linux-gtk.tar.gz && mv eclipse ~/opt

Make a bin folder in your home directory, this will be used for the startup script:

mkdir ~/bin

Next create an executable for Eclipe at ~/bin/eclipse with your favorite text editor by typing vi ~/bin/eclipse or nano ~/bin/eclipse into the command line. Add the following content:

export MOZILLA_FIVE_HOME="/usr/lib/mozilla/"
export ECLIPSE_HOME="$HOME/opt/eclipse"
$ECLIPSE_HOME/eclipse $*

Finally, allow the script to be executed:

chmod +x ~/bin/eclipse

HINT: If you are a gtk user and experience problems with the mouse buttons you should try add an export:

export GDK_NATIVE_WINDOWS=true

to the starter file.

You can now execute that file to start up Eclipse.

answered Dec 3 '12 at 11:50
 

If you have already installed eclipse from the software center, there is an easier way.
If you haven't, do that first.

cd ~/Downloads  # (or wherever your tar.gz is)
sudo tar -xf eclipse.*.tar.gz '/opt'
sudo ln -s /opt/eclipse/eclipse /usr/local/bin/eclipse

Note: much of this process is just tweaked from the top answer to be easier.

answered Feb 4 '14 at 0:39

How to install Eclipse?的更多相关文章

  1. (转) How to install eclipse in ubuntu 12.04

    源地址:http://www.krizna.com/ubuntu/install-eclipse-in-ubuntu-12-04/ Eclipse installation in ubuntu 12. ...

  2. How to Install Eclipse C/C++ Development Tool--转

    http://www3.ntu.edu.sg/home/ehchua/programming/howto/EclipseCpp_HowTo.html Eclipse 4.3 (Kepler) for ...

  3. Install eclipse ns3 in ubuntu 14.04

    1. NS3 install 参考NS3 tutorial即可. 2.eclipse 2.1下载 下载地址:http://www.eclipse.org/downloads/              ...

  4. Install eclipse groovy plugin

    http://dist.springsource.org/release/GRECLIPSE/e4.4/

  5. How to install Eclipse in linux

    http://askubuntu.com/questions/26632/how-to-install-eclipse

  6. How to install java and eclipse on linux

    First of all, download from the website of java. I download 'jdk-8u102-linux-i586.tar.gz' unzip it t ...

  7. 【335】Install PyDev in Eclipse IDE

    Reference: Eclipse和PyDev搭建完美Python开发环境(Windows篇) Reference: Install the PyDev plug-in for Eclipse Do ...

  8. 在 Ubuntu 15.04 中使用 ubuntu-make、Eclipse 4.4、Java 8 以及 WTP

    Ubuntu 今天发布新版本了 其实昨天(2015-04-23)我就看到了 Ubuntu 发布新版本的新闻,下班后回家的第一件事就是访问 Ubuntu 的官网,很可惜,没有提供下载.今天(2015-0 ...

  9. Ubuntu杂记——Ubuntu下Eclipse搭建Maven、SVN环境

    正在实习的公司项目是使用Maven+SVN管理的,所以转到Ubuntu下也要靠自己搭环境,自己动手,丰衣足食.步骤有点简略,但还是能理解的. 一.安装JDK7 打开终端(Ctrl+Alt+T),输入  ...

随机推荐

  1. 【旧文章搬运】PsVoid中IrpCreateFile函数在Win7下蓝屏BUG分析及解决

    原文发表于百度空间,2010-04-05========================================================================== 这也许是我 ...

  2. SSIS 事务

    本文摘自:http://www.cnblogs.com/tylerdonet/archive/2011/09/23/2186579.html 在这一个随笔中将介绍在package中如何使用事务来保证数 ...

  3. c语言中#和##的用法

    一.一般用法 我们使用#把宏参数变为一个字符串,用##把两个宏参数贴合在一起. 用法: #include<cstdio> #include<climits> using nam ...

  4. Flutter实战视频-移动电商-53.购物车_商品列表UI框架布局

    53.购物车_商品列表UI框架布局 cart_page.dart 清空原来写的持久化的代码; 添加对应的引用,stless生成一个静态的类.建议始终静态的类,防止重复渲染 纠正个错误,上图的CartP ...

  5. 解决At least one JAR was scanned for TLDs yet contained no TLDs. 问题

    启动tomcat运行项目时,总是提示: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug loggin ...

  6. MessageFomat学习

    MessageFomat 提供了一种以与语言无关的方式生成连接消息的方法. 用它来构造消息,显示给最终用户. 1.MessageFormat的格式 MessageFormatPattern:Forma ...

  7. [WIP]用已有db进行rails开发

    创建: 2019/01/16 晚点补上 https://qiita.com/edo1z/items/a0bf22b294406f00ec7c https://qiita.com/kentosasa/i ...

  8. linux 系统运行级别(转)

    Linux系统有7个运行级别(runlevel)运行级别0:系统停机状态,系统默认运行级别不能设为0,否则不能正常启动运行级别1:单用户工作状态,root权限,用于系统维护,禁止远程登陆运行级别2:多 ...

  9. JQ Ajax 同步与异步的区别

    $.ajax({ url: xml_addr, type: 'get', dataType: 'xml', timeout: 1000, //设定超时 cache: false, //禁用缓存 asy ...

  10. 洛谷1280(dp)

    题目性质:1.当前节点空闲则必须做任务,而不是可选可不选:2.然而前面的如果能覆盖当前节点,就可以不选. 解决方法:倒着扫可以很好地解决这两个问题.dp[i]为时刻i可得的最大空闲时间.如果此刻没有任 ...