How to install Eclipse?
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. |
|||||||||||||
|
If you've downloaded Eclipse from their official website, follow these steps for the installation.
That's it.
|
|||||||||||||||||||||
|
12.04 LTSThe preferred method: In Ubuntu software center select Eclipse Alternative options:The next most preferred method When it becomes available, if you already installed via software center- The least 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. |
|||||||||||||||||||||
|
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.
|
|||||||||||||||||||||
|
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 |
|||
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. |
|||||
|
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 Pangolin1) Open a terminal and enter the command
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
will install C/C++ development tools packages for Eclipse
|
||||
Always download the packaged eclipse from their website. Its best for you to place the So if you end up upgrading in the future, all your shortcuts and links wont die. This is the preferred setup for eclipse. IMO |
|||
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.
You can now run Kepler by typing Feel free to comment changes you'd recommend. |
|||
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 :) |
|||
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. |
|||
Change directory to the folder where your browser downloaded the Eclipse package to. Then unpack Eclipse into the
Make a
Next create an executable for Eclipe at
Finally, allow the script to be executed:
HINT: If you are a gtk user and experience problems with the mouse buttons you should try add an export:
to the starter file. You can now execute that file to start up Eclipse. |
||||
If you have already installed eclipse from the software center, there is an easier way.
Note: much of this process is just tweaked from the top answer to be easier. |
How to install Eclipse?的更多相关文章
- (转) How to install eclipse in ubuntu 12.04
源地址:http://www.krizna.com/ubuntu/install-eclipse-in-ubuntu-12-04/ Eclipse installation in ubuntu 12. ...
- 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 ...
- Install eclipse ns3 in ubuntu 14.04
1. NS3 install 参考NS3 tutorial即可. 2.eclipse 2.1下载 下载地址:http://www.eclipse.org/downloads/ ...
- Install eclipse groovy plugin
http://dist.springsource.org/release/GRECLIPSE/e4.4/
- How to install Eclipse in linux
http://askubuntu.com/questions/26632/how-to-install-eclipse
- 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 ...
- 【335】Install PyDev in Eclipse IDE
Reference: Eclipse和PyDev搭建完美Python开发环境(Windows篇) Reference: Install the PyDev plug-in for Eclipse Do ...
- 在 Ubuntu 15.04 中使用 ubuntu-make、Eclipse 4.4、Java 8 以及 WTP
Ubuntu 今天发布新版本了 其实昨天(2015-04-23)我就看到了 Ubuntu 发布新版本的新闻,下班后回家的第一件事就是访问 Ubuntu 的官网,很可惜,没有提供下载.今天(2015-0 ...
- Ubuntu杂记——Ubuntu下Eclipse搭建Maven、SVN环境
正在实习的公司项目是使用Maven+SVN管理的,所以转到Ubuntu下也要靠自己搭环境,自己动手,丰衣足食.步骤有点简略,但还是能理解的. 一.安装JDK7 打开终端(Ctrl+Alt+T),输入 ...
随机推荐
- 性能测试之Jmeter学习(三)
一.Jmeter执行顺序规则: 元件执行顺序的规则很简单,在同一作用域名范围内,测试计划中的元件按照如下顺序执行. (1)配置元件(config elements ) (2)前置处理程序(Per-pr ...
- sublime text3配置node.js环境,以及出现的问题
1) 下载sublime并安装,下载列表:https://www.sublimetext.com/3 2) 下载sublime的nodejs插件,需是集成Nodejs插件到sublime中,下载地址: ...
- java集合框架之聚合操作stream
参考http://how2j.cn/k/collection/collection-aggregate/702.html#nowhere 聚合操作 JDK8之后,引入了对集合的聚合操作,可以非常容易的 ...
- TypeScript完全解读(26课时)_5.TypeScript完全解读-函数
5.TypeScript完全解读-函数 新建function.ts.然后在index.ts内引用 给函数定义参数类型:上面是es5的写法 下面是ts6的写法 一个完整的函数类型.括号 箭头 numbe ...
- Identity Server 4 原理和实战(完结)_建立Angular 客户端
https://material.angular.io/ 第一部是安装angular cli --prefix=ac:前缀 --routing:默认使用路由 style=scss:样式使用scss - ...
- 一个例子读懂 JS 异步编程: Callback / Promise / Generator / Async
JS异步编程实践理解 回顾JS异步编程方法的发展,主要有以下几种方式: Callback Promise Generator Async 需求 显示购物车商品列表的页面,用户可以勾选想要删除商品(单选 ...
- Maven虐我千百遍,我待Maven如初恋
前言 在如今的互联网项目开发当中,特别是Java领域,可以说Maven随处可见.Maven的仓库管理.依赖管理.继承和聚合等特性为项目的构建提供了一整套完善的解决方案,可以说如果你搞不懂Maven,那 ...
- 洛谷 - P2283 - 多边形 - 半平面交
https://www.luogu.org/problemnew/show/P2283 需要注意max是求解顺序是从右到左,最好保证安全每次都清空就没问题了. #include<bits/std ...
- Swift 4.0 中的 open,public,internal,fileprivate,private
1.private private访问级别所修饰的属性或者方法只能在当前类里访问. 2.fileprivate fileprivate访问级别所修饰的属性或者方法在当前的Swift源文件里可以访问. ...
- Lightoj1080 【线段树】
题意: 给你一个0/1的数组,然后给你n段区间,说这个区间里要反转一次,然后给你Q个询问,问你这个位置是什么: 思路: 我们线段树维护一下就好了额: 其实反转的话,还是算次数是不是,奇偶嘛: #inc ...