英文:
Eclipse installation error : an error has occurred. See the log file
问题
我使用命令apt-get install eclipse
在我的树莓派3上安装了Eclipse IDE。但是当我运行程序时,会弹出一个窗口,显示发生了一个错误: 错误内容
发生了一个错误。请参阅日志文件
/home/pi/.eclipse/org.eclipse.platform_3.8_155965261/configuration/1598129501217.log
这个文件并不存在...
我还尝试使用在eclipse.org上找到的安装程序安装Eclipse,但是我无法运行这个安装程序... Eclipse安装程序图片
求助,谢谢。
英文:
I installed Eclipse IDE on my raspberry pi 3 with the command apt-get install eclipse
. But when I run the program, a window spawns and said that an error has occured : The error
An error has occurred. See the log file
/home/pi/.eclipse/org.eclipse.platform_3.8_155965261/configuration/1598129501217.log
This file doesn't exist...
I also tried to install Eclipse with the installer that we can find on eclipse.org but I cannot run the installer... eclipse installer image
Please, send help.
答案1
得分: 1
安装程序没有针对ARM编译。它只适用于x86-64硬件上的Linux,无法在Raspberry Pi上运行。
Debian/Raspbian目前提供的是Eclipse 3.8,这个版本发布于2012年,与2020年发布的JDK不兼容。目前,您可以访问 https://download.eclipse.org/eclipse/downloads/ 直接下载适用于Linux aarch64的4.17版本(或更新版本),比如页面中“Eclipse SDK”部分提供的版本,然后解压并使用该版本。
英文:
The installer has not been compiled for ARM. It is only for Linux on x86-64 hardware and will not run on a Raspberry Pi.
Debian/Raspbian currently ship Eclipse 3.8, which was released back in 2012, and it is not compatible with JDKs from 2020. For now, you'll want to go to https://download.eclipse.org/eclipse/downloads/ and directly download a 4.17 (or newer) build for Linux aarch64, such as the one under the "Eclipse SDK" part of the build's page, and unpack and use that.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论