eclipse安装及遇到的问题

时间:2023-01-23 12:27:21

一 安装eclipse

JDK安装好后才可以安装eclipse

1.去官网下载适合的eclipse
我的系统是Ubuntu16.04,JDK1.7
下载eclipse-jee-mars-2-linux-gtk-x86_64.tar.gz

2.将其解压到/usr/local文件夹中

sudo tar zxvf eclipse-jee-mars-2-linux-gtk-x86_64.tar.gz -C /usr/local

3.创建eclipse桌面快捷方式图标。
cd 桌面
sudo touch eclipse.desktop
sudo vim eclipse.desktop
然后输入如下内容(注意修改Exec和Icon的路径):
[Desktop Entry]
Encoding=UTF-8
Name=Eclipse
Comment=Eclipse
Exec=/usr/local/eclipse/eclipse
Icon=/usr/local/eclipse/icon.xpm
Terminal=false
StartupNotify=true
Type=Application
Categories=Application;Develop;

4.将其变为可执行文件
sudo chmod u+x eclipse.desktop

二 遇到的问题

1.eclipse安装时出现JVM teminated Exit code=1

这个问题出现在我将jdk由1.8切换为1.7之后,解决了两天,虽然已经处理好,但是目前还不明原因,望大神指教!

我的解决办法:

用eclipse_installer重新下载安装eclipse,电脑中的旧版本为neon,eclipse_installer重新安装的版本为mars2,安装好后eclipse可以正常使用。

但是重启电脑以后遇到如下第2个问题。

2.The Eclipse executable launcher was unable to locate its companion sh...

貌似是因为用eclipse_installer安装eclipse,其中的p2文件夹和plugins文件夹都在eclipse_installer文件夹中,而没在eclipse文件夹中。网上给出的解决办法是修改eclipse.ini的startup和library路径,不过我修改以后仍然没有效果。

最后的解决办法是:

去官网下载eclipse_mars2版本,然后按照本文第一部分重新安装一次,就可以正常使用eclipse了。